gpt4 book ai didi

java - BoneCP 语句句柄无法转换为 JDBC

转载 作者:行者123 更新时间:2023-12-01 15:17:54 25 4
gpt4 key购买 nike

我正在尝试设置 BonusCP 连接,但收到以下错误消息:

线程“main”中的异常java.lang.ClassCastException:com.jolbox.bonecp.StatementHandle无法转换为com.mysql.jdbc.Statement

连接似乎工作正常,但我在查询时停止了。

这是我的代码:

        BoneCP connectionPool = null;
Connection connection = null;

try {
// load the database driver (make sure this is in your classpath!)
Class.forName("com.mysql.jdbc.Driver");
} catch (Exception e) {
e.printStackTrace();
return;
}

try {
// setup the connection pool
BoneCPConfig config = new BoneCPConfig();
config.setJdbcUrl("jdbc:mysql://192.126.0.0:3306/"); // jdbc url specific to your database, eg jdbc:mysql://127.0.0.1/yourdb
config.setUsername("root");
config.setPassword("");
config.setMinConnectionsPerPartition(5);
config.setMaxConnectionsPerPartition(10);
config.setPartitionCount(1);
connectionPool = new BoneCP(config); // setup the connection pool

connection = connectionPool.getConnection(); // fetch a connection

if (connection != null){
System.out.println("Connection successful!");
Statement stmt = (Statement) connection.createStatement();
ResultSet rs = stmt.executeQuery("SELECT 1 FROM table"); // do something with the connection.
while(rs.next()){
System.out.println(rs.getString(1)); // should print out "1"'
}
}
connectionPool.shutdown(); // shutdown connection pool.
} catch (SQLException e) {
e.printStackTrace();
} finally {
if (connection != null) {
try {
connection.close();
} catch (SQLException e) {
e.printStackTrace();
}
}
}

最佳答案

这非常简单:如果您使用 BoneCP,则无法直接访问底层驱动程序的对象。这通常适用于连接池,因为它们通常使用对象代理来处理资源管理(例如,当连接返回到池时关闭语句、结果集等)。这尤其适用于语句,因为连接池可以(并且通常)也提供语句缓存。

特别是对于 BoneCP,您应该能够使用 StatementHandle.getInternalStatement() 访问包装的语句。 (尽管我对此不是 100% 确定)。

虽然最大的问题是:为什么需要转换为 com.mysql.jdbc.Statement,但是 java.sql.Statement 接口(interface)不足以满足你?

关于java - BoneCP 语句句柄无法转换为 JDBC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11377295/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com