FireDAC "table or view does not exist" 当插入 ORACLE TABLE Delphi Belin 10.1 upd 2
FireDAC "table or view does not exist" when insert into ORACLE TABLE Delphi Belin 10.1 upd 2
我们正在将我们的代码库从 Delphi XE3 with FireDAC 8.0.5 迁移到 Delphi Berlin 10.1 Upd 2 with FireDAC 15.0.1 (Build 86746)。使用 MS Sql Server 一切正常,但使用 ORACLE 已成为另一段历史。
在整个应用程序源代码中,我们使用了大量带有 sql 指令的 TAdQuery,例如
AdQuery1.Sql.Text := 'SELECT FIELD1, FIELD2 FROM TABLE1';
为了插入记录,我们使用 Append 或 Insert 方法,像这样
AdQuery1.Insert;
//要么
AdQuery1.Append;
在调用其 Post 方法后,组件在内部创建一个 INSERT sql 语句,如下所示
INSERT INTO TABLE1 (FIELD1, FIELD2) VALUES(:FIELD1, :FIELD2)
记录插入成功
现在,在 Delphi 柏林使用 TFdQuery,该组件在内部创建一个 INSERT sql 语句,如下所示
INSERT INTO USERNAME.TABLE1 (FIELD1, FIELD2) VALUES(:FIELD1, :FIELD2)
[FireDAC][Phys][Ora] ORA-00942 失败:table 或视图不存在
发生这种情况是因为在我们的 Oracle 数据库中,TABLE1 是在名为 MAIN_SCHEMA 的模式中创建的,我们通过使用 public 同义词来访问它。
为了寻找解决方法,我们比较了 FireDAC 源代码,发现
在Delphi XE3中,单位uADDAptManager.pas,其功能TADDAptTableAdapter.GetUpdateRowCommand,调用 oConn.CreateCommandGenerator(oCmdGen, nil);
在Delphi柏林,单位FireDAC.DApt.pas,其功能TFDDAptTableAdapter.GetUpdateRowCommand
调用 oConn.CreateCommandGenerator(oCmdGen, GetSelectCommand);
每当第二个参数(称为 ACommand:IFDPhysCommand)为 not nil 时,返回 table 的名称并连接用户名(在名为 TFDPhysCommandGenerator.GetFrom).
如果我们将 'MetaCurSchema=MAIN_SCHEMA'
添加到 TFdConnection 参数,它适用于不使用池连接的应用程序,但是我们有几个进程使用具有相同参数的池连接,甚至是 MetaCurSchema 参数,但是它不起作用
我们能做什么?
感谢您的帮助
据我了解,您最好在建立连接时避免 使用任何模式名称,而不是指定它。另外,请记住您已经使用了 public 个同义词。
因此,根据文档:
Full object names
FireDAC supports full object names, which include the catalog and/or schema names.
When a short object name is specified to StoredProcName, TableName, etc, they will be expanded into the full object names, using the current catalog and/or schema names. To override or avoid usage of the current catalog and/or schema names, use the MetaCurCatalog and MetaCurSchema connection definition parameters. For example:
[Oracle_Demo]
DriverID=Ora
...
MetaCurCatalog=*
MetaCurSchema=*
~ 来源:Object Names (FireDAC) - docWiki
MetaCurSchema
Specifies the current schema for the application. If not specified, then its value will be received from the DBMS. When an application is asking for metadata and do not specify a schema name, then FireDAC will implicitly use the current schema.
If MetaCurSchema is '*', then schema names will be me omitted from the metadata parameters.
~ 来源:Common Connection Parameters (FireDAC) - docWiki
星号 (*) 应该可以解决问题,如果是这样请告诉我们。
我们正在将我们的代码库从 Delphi XE3 with FireDAC 8.0.5 迁移到 Delphi Berlin 10.1 Upd 2 with FireDAC 15.0.1 (Build 86746)。使用 MS Sql Server 一切正常,但使用 ORACLE 已成为另一段历史。
在整个应用程序源代码中,我们使用了大量带有 sql 指令的 TAdQuery,例如
AdQuery1.Sql.Text := 'SELECT FIELD1, FIELD2 FROM TABLE1';
为了插入记录,我们使用 Append 或 Insert 方法,像这样
AdQuery1.Insert;
//要么
AdQuery1.Append;
在调用其 Post 方法后,组件在内部创建一个 INSERT sql 语句,如下所示
INSERT INTO TABLE1 (FIELD1, FIELD2) VALUES(:FIELD1, :FIELD2)
记录插入成功
现在,在 Delphi 柏林使用 TFdQuery,该组件在内部创建一个 INSERT sql 语句,如下所示
INSERT INTO USERNAME.TABLE1 (FIELD1, FIELD2) VALUES(:FIELD1, :FIELD2)
[FireDAC][Phys][Ora] ORA-00942 失败:table 或视图不存在
发生这种情况是因为在我们的 Oracle 数据库中,TABLE1 是在名为 MAIN_SCHEMA 的模式中创建的,我们通过使用 public 同义词来访问它。
为了寻找解决方法,我们比较了 FireDAC 源代码,发现
在Delphi XE3中,单位uADDAptManager.pas,其功能TADDAptTableAdapter.GetUpdateRowCommand,调用 oConn.CreateCommandGenerator(oCmdGen, nil);
在Delphi柏林,单位FireDAC.DApt.pas,其功能TFDDAptTableAdapter.GetUpdateRowCommand
调用 oConn.CreateCommandGenerator(oCmdGen, GetSelectCommand);
每当第二个参数(称为 ACommand:IFDPhysCommand)为 not nil 时,返回 table 的名称并连接用户名(在名为 TFDPhysCommandGenerator.GetFrom).
如果我们将 'MetaCurSchema=MAIN_SCHEMA'
添加到 TFdConnection 参数,它适用于不使用池连接的应用程序,但是我们有几个进程使用具有相同参数的池连接,甚至是 MetaCurSchema 参数,但是它不起作用
我们能做什么?
感谢您的帮助
据我了解,您最好在建立连接时避免 使用任何模式名称,而不是指定它。另外,请记住您已经使用了 public 个同义词。
因此,根据文档:
Full object names
FireDAC supports full object names, which include the catalog and/or schema names.
When a short object name is specified to StoredProcName, TableName, etc, they will be expanded into the full object names, using the current catalog and/or schema names. To override or avoid usage of the current catalog and/or schema names, use the MetaCurCatalog and MetaCurSchema connection definition parameters. For example:
[Oracle_Demo] DriverID=Ora ... MetaCurCatalog=* MetaCurSchema=*
~ 来源:Object Names (FireDAC) - docWiki
MetaCurSchema
Specifies the current schema for the application. If not specified, then its value will be received from the DBMS. When an application is asking for metadata and do not specify a schema name, then FireDAC will implicitly use the current schema.
If MetaCurSchema is '*', then schema names will be me omitted from the metadata parameters.
~ 来源:Common Connection Parameters (FireDAC) - docWiki
星号 (*) 应该可以解决问题,如果是这样请告诉我们。