在jaybird 2的版本中,我可以通过gds isc_info_page_size获取数据库页面大小。但现在我无法找到 - jaybird 3.0是否有可能做到这一点? 我有主机:端口,数据库文件名/别名和登录/密码 - 我不想使用MON $ -tables。
我看到文档并且只发现FBManager可以返回int getPageSize()但文档说:创建数据库时使用的页面大小或-1 如果使用数据库默认值。
但我有一个现有的数据库,现在想要它的页面大小。可以在不获取统计信息和解析标题信息的情况下完成吗?
PS。如果你指出我如何知道数据库SQL方言和ODS版本
,也会有所帮助答案 0 :(得分:3)
类FBManager
用于创建(或删除)数据库,其中包含用于创建数据库的页面大小。
FirebirdDatabaseMetaData
界面中提供了以下方法:
/**
* Get the major version of the ODS (On-Disk Structure) of the database.
*
* @return The major version number of the database itself
* @exception SQLException if a database access error occurs
*/
int getOdsMajorVersion() throws SQLException;
/**
* Get the minor version of the ODS (On-Disk Structure) of the database.
*
* @return The minor version number of the database itself
* @exception SQLException if a database access error occurs
*/
int getOdsMinorVersion() throws SQLException;
/**
* Get the dialect of the database.
*
* @return The dialect of the database
* @throws SQLException if a database access error occurs
* @see #getConnectionDialect()
*/
int getDatabaseDialect() throws SQLException;
/**
* Get the dialect of the connection.
* <p>
* The connection dialect may be different from the database dialect.
* </p>
*
* @return The dialect of the connection
* @throws SQLException if a database access error occurs
* @see #getDatabaseDialect()
*/
int getConnectionDialect() throws SQLException;
要访问这些,您需要打开数据库元数据对象:
Connection connection = ...
FirebirdDatabaseMetaData fbmd = connection.getMetaData().unwrap(FirebirdDatabaseMetaData.class);
int odsMajorVersion = fbmd.getOdsMajorVersion();
// etc
据我所知,页面大小并未暴露在任何地方。请在http://tracker.firebirdsql.org/browse/JDBC
上提交改进请求如果你真的想摆弄内部,你总是可以使用新的内部API,但它应该被认为是不稳定的,并且可能随时改变(并且它可能在将来变得难以访问或难以在Java 9中访问)版本取决于我们将如何实现模块支持。)
警告:我输入的内容没有编译或测试:
Connection connection = ...
FbDatabase db = connection.unwrap(FirebirdConnection.class).getFbDatabase();
byte[] info = db.getDatabaseInfo(new byte[] { ISCConstants.isc_info_page_size }, 20);
if (info[0] == ISCConstants.isc_info_page_size) {
int valueLength = VaxEncoding.iscVaxInteger2(info, 1);
int pageSize = VaxEncoding.iscVaxInteger(info, 3, valueLength);
// ...
}
或者使用其兄弟
/**
* Request database info.
*
* @param requestItems
* Array of info items to request
* @param bufferLength
* Response buffer length to use
* @param infoProcessor
* Implementation of {@link InfoProcessor} to transform
* the info response
* @return Transformed info response of type T
* @throws SQLException
* For errors retrieving or transforming the response.
*/
<T> T getDatabaseInfo(byte[] requestItems, int bufferLength, InfoProcessor<T> infoProcessor) throws SQLException;
中的工作示例
免责声明:我维护Jaybird。