|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Objectorg.sqlite.jdbc.JdbcConnection
public class JdbcConnection
フィールドの概要 |
---|
インタフェース java.sql.Connection から継承されたフィールド |
---|
TRANSACTION_NONE, TRANSACTION_READ_COMMITTED, TRANSACTION_READ_UNCOMMITTED, TRANSACTION_REPEATABLE_READ, TRANSACTION_SERIALIZABLE |
コンストラクタの概要 | |
---|---|
JdbcConnection(Database db,
java.lang.String url)
|
メソッドの概要 | |
---|---|
void |
clearWarnings()
|
void |
close()
|
void |
commit()
|
JdbcStatement |
createStatement()
|
JdbcStatement |
createStatement(int resultSetType,
int resultSetConcurrency)
|
JdbcStatement |
createStatement(int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
|
boolean |
getAutoCommit()
|
java.lang.String |
getCatalog()
Catalog is not supported yet. |
int |
getHoldability()
It always returns CLOSE_CURSORS_AT_COMMIT. |
JdbcDatabaseMetaData |
getMetaData()
|
int |
getTransactionIsolation()
It always returns TRANSACTION_SERIALIZABLE. |
java.util.Map<java.lang.String,java.lang.Class<?>> |
getTypeMap()
Not supporetd yet. |
java.sql.SQLWarning |
getWarnings()
It always returns null. |
boolean |
isClosed()
|
boolean |
isReadOnly()
|
java.lang.String |
nativeSQL(java.lang.String sql)
Not supporetd yet. |
java.sql.CallableStatement |
prepareCall(java.lang.String sql)
Not supporetd yet. |
java.sql.CallableStatement |
prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency)
Not supporetd yet. |
java.sql.CallableStatement |
prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
Not supporetd yet. |
JdbcPreparedStatement |
prepareStatement(java.lang.String sql)
|
JdbcPreparedStatement |
prepareStatement(java.lang.String sql,
int autoGeneratedKeys)
|
JdbcPreparedStatement |
prepareStatement(java.lang.String sql,
int[] columnIndexes)
Not supporetd yet. |
JdbcPreparedStatement |
prepareStatement(java.lang.String sql,
int resultSetType,
int resultSetConcurrency)
|
JdbcPreparedStatement |
prepareStatement(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
|
JdbcPreparedStatement |
prepareStatement(java.lang.String sql,
java.lang.String[] columnNames)
Not supporetd yet. |
void |
registerFunction(Function func)
invoke 'sqlite3_create_function()' function and the User-Defined function is registered. |
void |
releaseSavepoint(java.sql.Savepoint savepoint)
Not supporetd yet. |
void |
rollback()
|
void |
rollback(java.sql.Savepoint savepoint)
Not supporetd yet. |
void |
setAutoCommit(boolean autoCommit)
|
void |
setCatalog(java.lang.String catalog)
|
void |
setHoldability(int holdability)
|
void |
setReadOnly(boolean readOnly)
|
java.sql.Savepoint |
setSavepoint()
Not supporetd yet. |
java.sql.Savepoint |
setSavepoint(java.lang.String name)
Not supporetd yet. |
void |
setTransactionIsolation(int level)
|
void |
setTransactionType(TransactionType type)
|
void |
setTypeMap(java.util.Map<java.lang.String,java.lang.Class<?>> map)
Not supporetd yet. |
void |
unregisterFunction(Function func)
invoke 'sqlite3_create_function()' function and the User-Defined function is registered. |
protected void |
validateConnectionOpen()
|
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public JdbcConnection(Database db, java.lang.String url) throws java.sql.SQLException
java.sql.SQLException
メソッドの詳細 |
---|
public JdbcStatement createStatement() throws java.sql.SQLException
java.sql.Connection
内の createStatement
java.sql.SQLException
public JdbcPreparedStatement prepareStatement(java.lang.String sql) throws java.sql.SQLException
java.sql.Connection
内の prepareStatement
java.sql.SQLException
public java.sql.CallableStatement prepareCall(java.lang.String sql) throws java.sql.SQLException
java.sql.Connection
内の prepareCall
java.sql.SQLException
public java.lang.String nativeSQL(java.lang.String sql) throws java.sql.SQLException
java.sql.Connection
内の nativeSQL
java.sql.SQLException
public void setAutoCommit(boolean autoCommit) throws java.sql.SQLException
java.sql.Connection
内の setAutoCommit
java.sql.SQLException
public boolean getAutoCommit() throws java.sql.SQLException
java.sql.Connection
内の getAutoCommit
java.sql.SQLException
public void commit() throws java.sql.SQLException
java.sql.Connection
内の commit
java.sql.SQLException
public void rollback() throws java.sql.SQLException
java.sql.Connection
内の rollback
java.sql.SQLException
public void close() throws java.sql.SQLException
java.sql.Connection
内の close
java.sql.SQLException
public boolean isClosed() throws java.sql.SQLException
java.sql.Connection
内の isClosed
java.sql.SQLException
public JdbcDatabaseMetaData getMetaData() throws java.sql.SQLException
java.sql.Connection
内の getMetaData
java.sql.SQLException
public void setReadOnly(boolean readOnly) throws java.sql.SQLException
java.sql.Connection
内の setReadOnly
java.sql.SQLException
public boolean isReadOnly() throws java.sql.SQLException
java.sql.Connection
内の isReadOnly
java.sql.SQLException
public void setCatalog(java.lang.String catalog) throws java.sql.SQLException
java.sql.Connection
内の setCatalog
java.sql.SQLException
public java.lang.String getCatalog() throws java.sql.SQLException
java.sql.Connection
内の getCatalog
java.sql.SQLException
public void setTransactionIsolation(int level) throws java.sql.SQLException
java.sql.Connection
内の setTransactionIsolation
java.sql.SQLException
public int getTransactionIsolation() throws java.sql.SQLException
java.sql.Connection
内の getTransactionIsolation
java.sql.SQLException
public java.sql.SQLWarning getWarnings() throws java.sql.SQLException
java.sql.Connection
内の getWarnings
java.sql.SQLException
public void clearWarnings() throws java.sql.SQLException
java.sql.Connection
内の clearWarnings
java.sql.SQLException
public JdbcStatement createStatement(int resultSetType, int resultSetConcurrency) throws java.sql.SQLException
java.sql.Connection
内の createStatement
java.sql.SQLException
public JdbcPreparedStatement prepareStatement(java.lang.String sql, int resultSetType, int resultSetConcurrency) throws java.sql.SQLException
java.sql.Connection
内の prepareStatement
java.sql.SQLException
public java.sql.CallableStatement prepareCall(java.lang.String sql, int resultSetType, int resultSetConcurrency) throws java.sql.SQLException
java.sql.Connection
内の prepareCall
java.sql.SQLException
public java.util.Map<java.lang.String,java.lang.Class<?>> getTypeMap() throws java.sql.SQLException
java.sql.Connection
内の getTypeMap
java.sql.SQLException
public void setTypeMap(java.util.Map<java.lang.String,java.lang.Class<?>> map) throws java.sql.SQLException
java.sql.Connection
内の setTypeMap
java.sql.SQLException
public void setHoldability(int holdability) throws java.sql.SQLException
java.sql.Connection
内の setHoldability
java.sql.SQLException
public int getHoldability() throws java.sql.SQLException
java.sql.Connection
内の getHoldability
java.sql.SQLException
public java.sql.Savepoint setSavepoint() throws java.sql.SQLException
java.sql.Connection
内の setSavepoint
java.sql.SQLException
public java.sql.Savepoint setSavepoint(java.lang.String name) throws java.sql.SQLException
java.sql.Connection
内の setSavepoint
java.sql.SQLException
public void rollback(java.sql.Savepoint savepoint) throws java.sql.SQLException
java.sql.Connection
内の rollback
java.sql.SQLException
public void releaseSavepoint(java.sql.Savepoint savepoint) throws java.sql.SQLException
java.sql.Connection
内の releaseSavepoint
java.sql.SQLException
public JdbcStatement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws java.sql.SQLException
java.sql.Connection
内の createStatement
java.sql.SQLException
public JdbcPreparedStatement prepareStatement(java.lang.String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws java.sql.SQLException
java.sql.Connection
内の prepareStatement
java.sql.SQLException
public java.sql.CallableStatement prepareCall(java.lang.String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws java.sql.SQLException
java.sql.Connection
内の prepareCall
java.sql.SQLException
public JdbcPreparedStatement prepareStatement(java.lang.String sql, int autoGeneratedKeys) throws java.sql.SQLException
java.sql.Connection
内の prepareStatement
java.sql.SQLException
public JdbcPreparedStatement prepareStatement(java.lang.String sql, int[] columnIndexes) throws java.sql.SQLException
java.sql.Connection
内の prepareStatement
java.sql.SQLException
public JdbcPreparedStatement prepareStatement(java.lang.String sql, java.lang.String[] columnNames) throws java.sql.SQLException
java.sql.Connection
内の prepareStatement
java.sql.SQLException
protected void validateConnectionOpen() throws java.sql.SQLException
java.sql.SQLException
public void setTransactionType(TransactionType type)
type
- 'DEFERRED', 'IMMEDIATE', 'EXCLUSIVE'public void registerFunction(Function func) throws java.sql.SQLException
func
-
java.sql.SQLException
Database.registerFunction(Function)
public void unregisterFunction(Function func) throws java.sql.SQLException
func
-
java.sql.SQLException
Database.unregisterFunction(Function)
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |