我正在将我的 Firebird 数据库与 FireDAC 连接(从 FIBPlus 迁移并使用 XE8 更新 1)。我正在使用受信任的身份验证 (OSAutenth=True)。我需要阅读数据库中的表列表。我正在使用 TFDConnection.GetTableNames,它适用于标准身份验证(用户名+密码),但我无法使用受信任的身份验证使其工作。也许我做错了什么,或者我使用了错误的方法来获取此类信息。这就是我正在做的事情:
var
oDef : IFDStanConnectionDef;
oPars: TFDPhysFBConnectionDefParams;
begin
oDef:=FDManager.ConnectionDefs.AddConnectionDef;
oDef.Name:='MyFirebird';
oPars:=TFDPhysFBConnectionDefParams(oDef.Params);
oPars.DriverID:='FB';
oPars.Protocol:=ipTCPIP;
oPars.Server:=edServer.Text;
oPars.SQLDialect:=3;
oPars.Database:=edDataBase.Text;
oPars.OSAuthent:=(edPassword.Text='');
oPars.UserName:='SYSDBA';
oPars.Password:=edPassword.Text;
oPars.RoleName:=edRole.Text;
oPars.OpenMode:=omOpen;
FDPhysFBDriverLink1.Embedded:=False;
FDPhysFBDriverLink1.VendorLib:='c:\MyProgram\fbclient.dll';
FDConnection1.ConnectionDefName:='MyFirebird';
FDConnection1.Connected:=TRUE;
FDConnection1.GetTableNames('','','',Memo1.Lines,[osMy],[tkTable]); '<--- doesn't works with os authentication
FDQuery1.SQL.Text:='select * from MYTABLE';
FDQuery1.Active:=TRUE; '<--- works fine in both kind of authentication
我将要替换的 FIBPlus TpFIBDatabase.GetTableNames 在这两种身份验证中都可以正常工作。
任何想法?