我正在使用 jdbi 连接到 db 并执行 sql 命令。
dbi = new DBI("jdbc:mysql://"+dbHostName+"/"+dbName, "root", "");
dbi.withHandle(new HandleCallback<Object>() {
@Override
public Object withHandle(Handle handle) throws Exception {
handle.execute("Query to execute")
return null;
}
});
现在我想使用 jdbi 运行 sql 文件。我用谷歌搜索了很多,但无法弄清楚如何。