public interface Database
extends java.lang.AutoCloseable
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes this connection.
|
void |
execute(java.lang.String sql)
Executes the given SQL statement, for example a CREATE or DELETE statement.
|
java.sql.ResultSet |
executeQuery(java.lang.String sql)
Executes the given SQL statement and returns a
ResultSet object. |
void |
executeUpdate(java.lang.String sql)
Executes the given SQL statement, which may be an INSERT, UPDATE or DELETE
statement.
|
java.sql.Connection |
getConnection()
Gets the underlying
Connection object, which represents the connection
to the specific database. |
DatabaseType |
getType()
Gets the database type.
|
DatabaseType getType()
java.sql.Connection getConnection()
Connection
object, which represents the connection
to the specific database. This provides full access to the database. Be careful
when changing any settings of this connection;Connection
object.void execute(java.lang.String sql)
sql
- the SQL statement.void executeUpdate(java.lang.String sql)
sql
- the SQL statement, INSERT, UPDATE or DELETE.java.sql.ResultSet executeQuery(java.lang.String sql) throws java.sql.SQLException
ResultSet
object.sql
- the SQL statement, typically a SELECT statement.java.sql.SQLException
- If a database access error occurs.void close()
close
in interface java.lang.AutoCloseable