- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们正在将我们的代码库从带有 FireDAC 8.0.5 的 Delphi XE3 迁移到带有 FireDAC 15.0.1(Build 86746)的 Delphi Berlin 10.1 Upd 2。使用 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 Berlin 中使用 TFdQuery,组件在内部创建一个 INSERT sql 语句,像这样INSERT INTO USERNAME.TABLE1 (FIELD1, FIELD2) VALUES(:FIELD1, :FIELD2)
以 失败[FireDAC][Phys][Ora] ORA-00942: 表或 View 不存在
发生这种情况是因为在我们的 Oracle 数据库中,TABLE1 是在名为 MAIN_SCHEMA 的模式中创建的,我们使用公共(public)同义词访问它。
为了找到解决方法,我们比较了 FireDAC 源代码,发现
在 Delphi XE3 中,单位 uADDAptManager.pas , 关于它的功能 TADDAptTableAdapter.GetUpdateRowCommand , 调用 oConn.CreateCommandGenerator(oCmdGen, nil);
在柏林德尔福,单位 FireDAC.DApt.pas , 关于它的功能 TFDDAptTableAdapter.GetUpdateRowCommand
来电oConn.CreateCommandGenerator(oCmdGen, GetSelectCommand);
每当第二个参数(称为 ACommand:IFDPhysCommand)为 时不为零 ,表的名称与用户名连接返回(在一个名为 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=*
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.
关于oracle - FireDAC "table or view does not exist"插入 ORACLE TABLE Delphi Belin 10.1 更新 2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58208551/
我们正在将我们的代码库从带有 FireDAC 8.0.5 的 Delphi XE3 迁移到带有 FireDAC 15.0.1(Build 86746)的 Delphi Berlin 10.1 Upd
我是一名优秀的程序员,十分优秀!