我正在修复 EclipseLink 的InformixPlatform
数据库支持类以使用我们的 Informix 11.70 安装。
需要工作的合约之一由以下代码表示。该文档解释了需要什么:
/**
* INTERNAL:
* Indicates whether the platform supports local temporary tables.
* "Local" means that several threads may create
* temporary tables with the same name.
[snip]
*/
public boolean supportsLocalTempTables() {
return true; // is this correct?
}
/**
* INTERNAL:
* Indicates whether the platform supports global temporary tables.
* "Global" means that an attempt to create temporary table with the same
* name for the second time results in exception.
[snip]
* Note that this method is ignored in case supportsLocalTempTables() returns true.
*/
public boolean supportsGlobalTempTables() {
return false; // is this correct?
}
我的感觉是我应该true
从. ?supportsLocalTempTables()
FRED
FRED
我查阅了 Informix 11.70 InfoCenter 主题,但没有看到任何具体内容。