Simply copy function logic from sqlite-jdbc

This commit is contained in:
김선우
2025-02-09 11:45:34 +09:00
parent ea02664f68
commit 6011526755
2 changed files with 1110 additions and 932 deletions

View File

@@ -372,4 +372,8 @@ public class JDBC4Connection implements Connection {
public String getUrl() {
return this.connection.getUrl();
}
public void checkOpen() throws SQLException {
connection.checkOpen();
}
}