com.lavans.util.jdbc.cluster
クラス ClusterStatement

java.lang.Object
  上位を拡張 com.lavans.util.jdbc.cluster.ClusterStatement
すべての実装されたインタフェース:
ClusterStatementInterface, java.sql.Statement
直系の既知のサブクラス:
ClusterPreparedStatement

public class ClusterStatement
extends java.lang.Object
implements java.sql.Statement, ClusterStatementInterface


フィールドの概要
protected static Logger logger
          ロガー。
protected static java.lang.String MSG_ERR_REUPDATE
          Messageクラスに移動?
protected static java.lang.String MSG_WARN_SWITCH_DB
           
 
インタフェース java.sql.Statement から継承されたフィールド
CLOSE_ALL_RESULTS, CLOSE_CURRENT_RESULT, EXECUTE_FAILED, KEEP_CURRENT_RESULT, NO_GENERATED_KEYS, RETURN_GENERATED_KEYS, SUCCESS_NO_INFO
 
コンストラクタの概要
ClusterStatement(ClusterConnection con, java.sql.Statement st)
          コンストラクタ。
 
メソッドの概要
 void addBatch(java.lang.String sql)
           
 void cancel()
           
 void clearBatch()
           
 void clearWarnings()
           
 void close()
           
 boolean execute(java.lang.String sql)
           
 boolean execute(java.lang.String sql, int autoGeneratedKeys)
           
 boolean execute(java.lang.String sql, int[] columnIndexes)
           
 boolean execute(java.lang.String sql, java.lang.String[] columnNames)
           
 int[] executeBatch()
           
 java.sql.ResultSet executeQuery(java.lang.String sql)
           
 int executeUpdate(java.lang.String sql)
           
 int executeUpdate(java.lang.String sql, int autoGeneratedKeys)
           
 int executeUpdate(java.lang.String sql, int[] columnIndexes)
           
 int executeUpdate(java.lang.String sql, java.lang.String[] columnNames)
           
 java.sql.ResultSet getAnotherResultSet()
           
 java.sql.Connection getConnection()
           
 int getFetchDirection()
           
 int getFetchSize()
           
 java.sql.ResultSet getGeneratedKeys()
           
 int getMaxFieldSize()
           
 int getMaxRows()
           
 boolean getMoreResults()
           
 boolean getMoreResults(int current)
           
 int getQueryTimeout()
           
 java.sql.ResultSet getResultSet()
           
 int getResultSetConcurrency()
           
 int getResultSetHoldability()
           
 int getResultSetType()
           
 int getUpdateCount()
           
 java.sql.SQLWarning getWarnings()
           
 void reupdateStatement(java.sql.Statement st)
          DB切替時、新たに取得したStatementに対して 更新処理を再実行する。
 void setCursorName(java.lang.String name)
           
 void setEscapeProcessing(boolean enable)
           
 void setFetchDirection(int direction)
           
 void setFetchSize(int rows)
           
 void setMaxFieldSize(int max)
           
 void setMaxRows(int max)
           
 void setQueryTimeout(int seconds)
           
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

MSG_ERR_REUPDATE

protected static final java.lang.String MSG_ERR_REUPDATE
Messageクラスに移動?

関連項目:
定数フィールド値

MSG_WARN_SWITCH_DB

protected static final java.lang.String MSG_WARN_SWITCH_DB
関連項目:
定数フィールド値

logger

protected static Logger logger
ロガー。debug用。

コンストラクタの詳細

ClusterStatement

public ClusterStatement(ClusterConnection con,
                        java.sql.Statement st)
コンストラクタ。

パラメータ:
st -
メソッドの詳細

reupdateStatement

public void reupdateStatement(java.sql.Statement st)
                       throws java.sql.SQLException
DB切替時、新たに取得したStatementに対して 更新処理を再実行する。

定義:
インタフェース ClusterStatementInterface 内の reupdateStatement
パラメータ:
-
例外:
java.sql.SQLException

getAnotherResultSet

public java.sql.ResultSet getAnotherResultSet()
                                       throws java.sql.SQLException
定義:
インタフェース ClusterStatementInterface 内の getAnotherResultSet
例外:
java.sql.SQLException
関連項目:
Statement.executeQuery(java.lang.String)

executeQuery

public java.sql.ResultSet executeQuery(java.lang.String sql)
                                throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の executeQuery
例外:
java.sql.SQLException
関連項目:
Statement.executeQuery(java.lang.String)

executeUpdate

public int executeUpdate(java.lang.String sql)
                  throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の executeUpdate
例外:
java.sql.SQLException
関連項目:
Statement.executeUpdate(java.lang.String)

executeUpdate

public int executeUpdate(java.lang.String sql,
                         int autoGeneratedKeys)
                  throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の executeUpdate
例外:
java.sql.SQLException
関連項目:
Statement.executeUpdate(java.lang.String, int)

executeUpdate

public int executeUpdate(java.lang.String sql,
                         int[] columnIndexes)
                  throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の executeUpdate
例外:
java.sql.SQLException
関連項目:
Statement.executeUpdate(java.lang.String, int[])

executeUpdate

public int executeUpdate(java.lang.String sql,
                         java.lang.String[] columnNames)
                  throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の executeUpdate
例外:
java.sql.SQLException
関連項目:
Statement.executeUpdate(java.lang.String, java.lang.String[])

execute

public boolean execute(java.lang.String sql,
                       int autoGeneratedKeys)
                throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の execute
例外:
java.sql.SQLException
関連項目:
Statement.execute(java.lang.String, int)

execute

public boolean execute(java.lang.String sql)
                throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の execute
例外:
java.sql.SQLException
関連項目:
Statement.execute(java.lang.String)

execute

public boolean execute(java.lang.String sql,
                       int[] columnIndexes)
                throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の execute
例外:
java.sql.SQLException
関連項目:
Statement.execute(java.lang.String, int[])

execute

public boolean execute(java.lang.String sql,
                       java.lang.String[] columnNames)
                throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の execute
例外:
java.sql.SQLException
関連項目:
Statement.execute(java.lang.String, java.lang.String[])

getFetchDirection

public int getFetchDirection()
                      throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getFetchDirection
例外:
java.sql.SQLException
関連項目:
Statement.getFetchDirection()

getFetchSize

public int getFetchSize()
                 throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getFetchSize
例外:
java.sql.SQLException
関連項目:
Statement.getFetchSize()

getMaxFieldSize

public int getMaxFieldSize()
                    throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getMaxFieldSize
例外:
java.sql.SQLException
関連項目:
Statement.getMaxFieldSize()

getMaxRows

public int getMaxRows()
               throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getMaxRows
例外:
java.sql.SQLException
関連項目:
Statement.getMaxRows()

getQueryTimeout

public int getQueryTimeout()
                    throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getQueryTimeout
例外:
java.sql.SQLException
関連項目:
Statement.getQueryTimeout()

getResultSetConcurrency

public int getResultSetConcurrency()
                            throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getResultSetConcurrency
例外:
java.sql.SQLException
関連項目:
Statement.getResultSetConcurrency()

getResultSetHoldability

public int getResultSetHoldability()
                            throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getResultSetHoldability
例外:
java.sql.SQLException
関連項目:
Statement.getResultSetHoldability()

getResultSetType

public int getResultSetType()
                     throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getResultSetType
例外:
java.sql.SQLException
関連項目:
Statement.getResultSetType()

getUpdateCount

public int getUpdateCount()
                   throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getUpdateCount
例外:
java.sql.SQLException
関連項目:
Statement.getUpdateCount()

cancel

public void cancel()
            throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の cancel
例外:
java.sql.SQLException
関連項目:
Statement.cancel()

clearBatch

public void clearBatch()
                throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の clearBatch
例外:
java.sql.SQLException
関連項目:
Statement.clearBatch()

clearWarnings

public void clearWarnings()
                   throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の clearWarnings
例外:
java.sql.SQLException
関連項目:
Statement.clearWarnings()

close

public void close()
           throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の close
例外:
java.sql.SQLException
関連項目:
Statement.close()

getMoreResults

public boolean getMoreResults()
                       throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getMoreResults
例外:
java.sql.SQLException
関連項目:
Statement.getMoreResults()

executeBatch

public int[] executeBatch()
                   throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の executeBatch
例外:
java.sql.SQLException
関連項目:
Statement.executeBatch()

setFetchDirection

public void setFetchDirection(int direction)
                       throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の setFetchDirection
例外:
java.sql.SQLException
関連項目:
Statement.setFetchDirection(int)

setFetchSize

public void setFetchSize(int rows)
                  throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の setFetchSize
例外:
java.sql.SQLException
関連項目:
Statement.setFetchSize(int)

setMaxFieldSize

public void setMaxFieldSize(int max)
                     throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の setMaxFieldSize
例外:
java.sql.SQLException
関連項目:
Statement.setMaxFieldSize(int)

setMaxRows

public void setMaxRows(int max)
                throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の setMaxRows
例外:
java.sql.SQLException
関連項目:
Statement.setMaxRows(int)

setQueryTimeout

public void setQueryTimeout(int seconds)
                     throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の setQueryTimeout
例外:
java.sql.SQLException
関連項目:
Statement.setQueryTimeout(int)

getMoreResults

public boolean getMoreResults(int current)
                       throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getMoreResults
例外:
java.sql.SQLException
関連項目:
Statement.getMoreResults(int)

setEscapeProcessing

public void setEscapeProcessing(boolean enable)
                         throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の setEscapeProcessing
例外:
java.sql.SQLException
関連項目:
Statement.setEscapeProcessing(boolean)

addBatch

public void addBatch(java.lang.String sql)
              throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の addBatch
例外:
java.sql.SQLException
関連項目:
Statement.addBatch(java.lang.String)

setCursorName

public void setCursorName(java.lang.String name)
                   throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の setCursorName
例外:
java.sql.SQLException
関連項目:
Statement.setCursorName(java.lang.String)

getConnection

public java.sql.Connection getConnection()
                                  throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getConnection
例外:
java.sql.SQLException
関連項目:
Statement.getConnection()

getGeneratedKeys

public java.sql.ResultSet getGeneratedKeys()
                                    throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getGeneratedKeys
例外:
java.sql.SQLException
関連項目:
Statement.getGeneratedKeys()

getResultSet

public java.sql.ResultSet getResultSet()
                                throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getResultSet
例外:
java.sql.SQLException
関連項目:
Statement.getResultSet()

getWarnings

public java.sql.SQLWarning getWarnings()
                                throws java.sql.SQLException
定義:
インタフェース java.sql.Statement 内の getWarnings
例外:
java.sql.SQLException
関連項目:
Statement.getWarnings()