org.seasar.framework.mock.sql
クラス MockStatement

java.lang.Object
  拡張org.seasar.framework.mock.sql.MockStatement
すべての実装インタフェース:
java.sql.Statement
直系の既知のサブクラス:
MockPreparedStatement

public class MockStatement
extends java.lang.Object
implements java.sql.Statement

Statement用のモッククラスです。

作成者:
higa

フィールドの概要
 
インタフェース java.sql.Statement から継承したフィールド
CLOSE_ALL_RESULTS, CLOSE_CURRENT_RESULT, EXECUTE_FAILED, KEEP_CURRENT_RESULT, NO_GENERATED_KEYS, RETURN_GENERATED_KEYS, SUCCESS_NO_INFO
 
コンストラクタの概要
MockStatement(MockConnection connection)
          MockStatementを作成します。
MockStatement(MockConnection connection, int resultSetType, int resultSetConcurrency)
          MockStatementを作成します。
MockStatement(MockConnection connection, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
          MockStatementを作成します。
 
メソッドの概要
 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.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()
           
 boolean isClosed()
          閉じているかどうかを返します。
 void setClosed(boolean closed)
          閉じているかどうかを設定します。
 void setCursorName(java.lang.String name)
           
 void setEscapeProcessing(boolean enable)
           
 void setFetchDirection(int direction)
           
 void setFetchSize(int fetchSize)
           
 void setMaxFieldSize(int max)
           
 void setMaxRows(int maxRows)
           
 void setQueryTimeout(int queryTimeout)
           
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

MockStatement

public MockStatement(MockConnection connection)
MockStatementを作成します。

パラメータ:
connection - コネクション

MockStatement

public MockStatement(MockConnection connection,
                     int resultSetType,
                     int resultSetConcurrency)
MockStatementを作成します。

パラメータ:
connection - コネクション
resultSetType - 結果セットタイプ
resultSetConcurrency - 結果セット同時並行性

MockStatement

public MockStatement(MockConnection connection,
                     int resultSetType,
                     int resultSetConcurrency,
                     int resultSetHoldability)
MockStatementを作成します。

パラメータ:
connection - コネクション
resultSetType - 結果セットタイプ
resultSetConcurrency - 結果セット同時並行性
resultSetHoldability - 結果セット保持力
メソッドの詳細

addBatch

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

cancel

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

clearBatch

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

clearWarnings

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

close

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

isClosed

public boolean isClosed()
閉じているかどうかを返します。

戻り値:
閉じているかどうか

setClosed

public void setClosed(boolean closed)
閉じているかどうかを設定します。

パラメータ:
closed - 閉じているかどうか

execute

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

execute

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

execute

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

execute

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

executeBatch

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

executeQuery

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

executeUpdate

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

executeUpdate

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

executeUpdate

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

executeUpdate

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

getConnection

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

getFetchDirection

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

getFetchSize

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

getGeneratedKeys

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

getMaxFieldSize

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

getMaxRows

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

getMoreResults

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

getMoreResults

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

getQueryTimeout

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

getResultSet

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

getResultSetConcurrency

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

getResultSetHoldability

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

getResultSetType

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

getUpdateCount

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

getWarnings

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

setCursorName

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

setEscapeProcessing

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

setFetchDirection

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

setFetchSize

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

setMaxFieldSize

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

setMaxRows

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

setQueryTimeout

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


Copyright © 2004-2014 The Seasar Foundation. All Rights Reserved.