type
fields
autoCommit |
If auto-commit is true then each statement is executed and committed as an individual transaction. |
---|
methods
close |
Close the database connection. |
---|---|
commit |
Commit all the changes made inside the current transaction. |
isClosed |
Return if |
meta |
Get the database meta-data |
open |
Open a connection to the database specified by the given JDBC uri and username/password credentials. |
rollback |
Undo any changes made inside the current transaction. |
sql |
Create a statement for this database. |
stash |
User data stash for adding cached data to this connection. |
Slot Details
autoCommit
close
Close the database connection. Closing a connection already closed is a no-op. This method is guaranteed to never throw an exception. Return true if the connection was closed successfully or false
if closed abnormally.
Do not close connections that were created by SqlConnPool. The pool handles that for you.