|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.ibatis.sqlmap.engine.impl.SqlMapClientImpl
public class SqlMapClientImpl
Implementation of ExtendedSqlMapClient
Field Summary | |
---|---|
SqlMapExecutorDelegate |
delegate
Delegate for SQL execution |
protected ThreadLocal<SqlMapSessionImpl> |
localSqlMapSession
|
Constructor Summary | |
---|---|
SqlMapClientImpl(SqlMapExecutorDelegate delegate)
Constructor to supply a delegate |
Method Summary | |
---|---|
void |
commitTransaction()
Commits the currently started transaction. |
int |
delete(String id)
Executes a mapped SQL DELETE statement. |
int |
delete(String id,
Object param)
Executes a mapped SQL DELETE statement. |
void |
endTransaction()
Ends a transaction and rolls back if necessary. |
int |
executeBatch()
Executes (flushes) all statements currently batched. |
List |
executeBatchDetailed()
Executes (flushes) all statements currently batched. |
void |
flushDataCache()
Flushes all data caches. |
void |
flushDataCache(String cacheId)
Flushes the data cache that matches the cache model ID provided. |
Connection |
getCurrentConnection()
Returns the current connection in use. |
DataSource |
getDataSource()
Returns the DataSource instance currently being used by the SqlMapSession. |
SqlMapExecutorDelegate |
getDelegate()
|
protected SqlMapSessionImpl |
getLocalSqlMapSession()
|
MappedStatement |
getMappedStatement(String id)
|
ResultObjectFactory |
getResultObjectFactory()
|
SqlMapSession |
getSession()
Deprecated. Use openSession() |
SqlExecutor |
getSqlExecutor()
|
Connection |
getUserConnection()
Deprecated. |
Object |
insert(String id)
Executes a mapped SQL INSERT statement. |
Object |
insert(String id,
Object param)
Executes a mapped SQL INSERT statement. |
boolean |
isEnhancementEnabled()
|
boolean |
isLazyLoadingEnabled()
|
SqlMapSession |
openSession()
Returns a single threaded SqlMapSession implementation for use by one user. |
SqlMapSession |
openSession(Connection conn)
Returns a single threaded SqlMapSession implementation for use by one user. |
List |
queryForList(String id)
Executes a mapped SQL SELECT statement that returns data to populate a number of result objects. |
List |
queryForList(String id,
int skip,
int max)
Executes a mapped SQL SELECT statement that returns data to populate a number of result objects within a certain range. |
List |
queryForList(String id,
Object paramObject)
Executes a mapped SQL SELECT statement that returns data to populate a number of result objects. |
List |
queryForList(String id,
Object paramObject,
int skip,
int max)
Executes a mapped SQL SELECT statement that returns data to populate a number of result objects within a certain range. |
Map |
queryForMap(String id,
Object paramObject,
String keyProp)
Executes a mapped SQL SELECT statement that returns data to populate a number of result objects that will be keyed into a Map. |
Map |
queryForMap(String id,
Object paramObject,
String keyProp,
String valueProp)
Executes a mapped SQL SELECT statement that returns data to populate a number of result objects from which one property will be keyed into a Map. |
Object |
queryForObject(String id)
Executes a mapped SQL SELECT statement that returns data to populate a single object instance. |
Object |
queryForObject(String id,
Object paramObject)
Executes a mapped SQL SELECT statement that returns data to populate a single object instance. |
Object |
queryForObject(String id,
Object paramObject,
Object resultObject)
Executes a mapped SQL SELECT statement that returns data to populate the supplied result object. |
PaginatedList |
queryForPaginatedList(String id,
int pageSize)
Deprecated. All paginated list features have been deprecated |
PaginatedList |
queryForPaginatedList(String id,
Object paramObject,
int pageSize)
Deprecated. All paginated list features have been deprecated |
void |
queryWithRowHandler(String id,
Object paramObject,
RowHandler rowHandler)
Executes a mapped SQL SELECT statement that returns a number of result objects that will be handled one at a time by a RowHandler. |
void |
queryWithRowHandler(String id,
RowHandler rowHandler)
Executes a mapped SQL SELECT statement that returns a number of result objects that will be handled one at a time by a RowHandler. |
void |
setUserConnection(Connection connection)
Allows the developer to easily use an externally supplied connection when executing statements. |
void |
startBatch()
Starts a batch in which update statements will be cached before being sent to the database all at once. |
void |
startTransaction()
Demarcates the beginning of a transaction scope. |
void |
startTransaction(int transactionIsolation)
Demarcates the beginning of a transaction scope using the specified transaction isolation. |
int |
update(String id)
Executes a mapped SQL UPDATE statement. |
int |
update(String id,
Object param)
Executes a mapped SQL UPDATE statement. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public SqlMapExecutorDelegate delegate
protected ThreadLocal<SqlMapSessionImpl> localSqlMapSession
Constructor Detail |
---|
public SqlMapClientImpl(SqlMapExecutorDelegate delegate)
delegate
- - the delegateMethod Detail |
---|
public Object insert(String id, Object param) throws SQLException
SqlMapExecutor
insert
in interface SqlMapExecutor
insert
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.param
- The parameter object (e.g. JavaBean, Map, XML etc.).
SQLException
- If an error occurs.public Object insert(String id) throws SQLException
SqlMapExecutor
insert
in interface SqlMapExecutor
insert
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.
SQLException
- If an error occurs.public int update(String id, Object param) throws SQLException
SqlMapExecutor
update
in interface SqlMapExecutor
update
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.param
- The parameter object (e.g. JavaBean, Map, XML etc.).
SQLException
- If an error occurs.public int update(String id) throws SQLException
SqlMapExecutor
update
in interface SqlMapExecutor
update
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.
SQLException
- If an error occurs.public int delete(String id, Object param) throws SQLException
SqlMapExecutor
delete
in interface SqlMapExecutor
delete
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.param
- The parameter object (e.g. JavaBean, Map, XML etc.).
SQLException
- If an error occurs.public int delete(String id) throws SQLException
SqlMapExecutor
delete
in interface SqlMapExecutor
delete
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.
SQLException
- If an error occurs.public Object queryForObject(String id, Object paramObject) throws SQLException
SqlMapExecutor
queryForObject
in interface SqlMapExecutor
queryForObject
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.paramObject
- The parameter object (e.g. JavaBean, Map, XML etc.).
SQLException
- If more than one result was found, or if any other error occurs.public Object queryForObject(String id) throws SQLException
SqlMapExecutor
queryForObject
in interface SqlMapExecutor
queryForObject
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.
SQLException
- If more than one result was found, or if any other error occurs.public Object queryForObject(String id, Object paramObject, Object resultObject) throws SQLException
SqlMapExecutor
queryForObject
in interface SqlMapExecutor
queryForObject
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.paramObject
- The parameter object (e.g. JavaBean, Map, XML etc.).resultObject
- The result object instance that should be populated with result data.
SQLException
- If more than one result was found, or if any other error occurs.public List queryForList(String id, Object paramObject) throws SQLException
SqlMapExecutor
queryForList
in interface SqlMapExecutor
queryForList
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.paramObject
- The parameter object (e.g. JavaBean, Map, XML etc.).
SQLException
- If an error occurs.public List queryForList(String id) throws SQLException
SqlMapExecutor
queryForList
in interface SqlMapExecutor
queryForList
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.
SQLException
- If an error occurs.public List queryForList(String id, Object paramObject, int skip, int max) throws SQLException
SqlMapExecutor
queryForList
in interface SqlMapExecutor
queryForList
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.paramObject
- The parameter object (e.g. JavaBean, Map, XML etc.).skip
- The number of results to ignore.max
- The maximum number of results to return.
SQLException
- If an error occurs.public List queryForList(String id, int skip, int max) throws SQLException
SqlMapExecutor
queryForList
in interface SqlMapExecutor
queryForList
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.skip
- The number of results to ignore.max
- The maximum number of results to return.
SQLException
- If an error occurs.public PaginatedList queryForPaginatedList(String id, Object paramObject, int pageSize) throws SQLException
SqlMapExecutor
queryForPaginatedList
in interface SqlMapExecutor
queryForPaginatedList
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.paramObject
- The parameter object (e.g. JavaBean, Map, XML etc.).pageSize
- The maximum number of result objects each page can hold.
SQLException
- If an error occurs.public PaginatedList queryForPaginatedList(String id, int pageSize) throws SQLException
SqlMapExecutor
queryForPaginatedList
in interface SqlMapExecutor
queryForPaginatedList
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.pageSize
- The maximum number of result objects each page can hold.
SQLException
- If an error occurs.public Map queryForMap(String id, Object paramObject, String keyProp) throws SQLException
SqlMapExecutor
queryForMap
in interface SqlMapExecutor
queryForMap
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.paramObject
- The parameter object (e.g. JavaBean, Map, XML etc.).keyProp
- The property to be used as the key in the Map.
SQLException
- If an error occurs.public Map queryForMap(String id, Object paramObject, String keyProp, String valueProp) throws SQLException
SqlMapExecutor
queryForMap
in interface SqlMapExecutor
queryForMap
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.paramObject
- The parameter object (e.g. JavaBean, Map, XML etc.).keyProp
- The property to be used as the key in the Map.valueProp
- The property to be used as the value in the Map.
SQLException
- If an error occurs.public void queryWithRowHandler(String id, Object paramObject, RowHandler rowHandler) throws SQLException
SqlMapExecutor
queryWithRowHandler
in interface SqlMapExecutor
queryWithRowHandler
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.paramObject
- The parameter object (e.g. JavaBean, Map, XML etc.).rowHandler
- A RowHandler instance
SQLException
- If an error occurs.public void queryWithRowHandler(String id, RowHandler rowHandler) throws SQLException
SqlMapExecutor
queryWithRowHandler
in interface SqlMapExecutor
queryWithRowHandler
in interface ExtendedSqlMapClient
id
- The name of the statement to execute.rowHandler
- A RowHandler instance
SQLException
- If an error occurs.public void startTransaction() throws SQLException
SqlMapTransactionManager
try { sqlMap.startTransaction(); // do work sqlMap.commitTransaction(); } finally { sqlMap.endTransaction(); }Always call endTransaction() once startTransaction() has been called.
startTransaction
in interface SqlMapTransactionManager
startTransaction
in interface ExtendedSqlMapClient
SQLException
- If an error occurs while starting the transaction, or
the transaction could not be started.public void startTransaction(int transactionIsolation) throws SQLException
SqlMapTransactionManager
try { sqlMap.startTransaction(Connection.TRANSACTION_REPEATABLE_READ); // do work sqlMap.commitTransaction(); } finally { sqlMap.endTransaction(); }Always call endTransaction() once startTransaction() has been called.
startTransaction
in interface SqlMapTransactionManager
startTransaction
in interface ExtendedSqlMapClient
SQLException
- If an error occurs while starting the transaction, or
the transaction could not be started.public void commitTransaction() throws SQLException
SqlMapTransactionManager
commitTransaction
in interface SqlMapTransactionManager
commitTransaction
in interface ExtendedSqlMapClient
SQLException
- If an error occurs while committing the transaction, or
the transaction could not be committed.public void endTransaction() throws SQLException
SqlMapTransactionManager
endTransaction
in interface SqlMapTransactionManager
endTransaction
in interface ExtendedSqlMapClient
SQLException
- If an error occurs during rollback or the transaction could
not be ended.public void startBatch() throws SQLException
SqlMapExecutor
startBatch
in interface SqlMapExecutor
startBatch
in interface ExtendedSqlMapClient
SQLException
- If the batch could not be started.public int executeBatch() throws SQLException
SqlMapExecutor
executeBatch
in interface SqlMapExecutor
executeBatch
in interface ExtendedSqlMapClient
SQLException
- If the batch could not be executed or if any of the statements
fails.public List executeBatchDetailed() throws SQLException, BatchException
SqlMapExecutor
executeBatchDetailed
in interface SqlMapExecutor
executeBatchDetailed
in interface ExtendedSqlMapClient
SQLException
- if a database access error occurs, or the drive
does not support batch statements
BatchException
- if the driver throws BatchUpdateExceptionBatchException
public void setUserConnection(Connection connection) throws SQLException
SqlMapTransactionManager
try { Connection connection = dataSource.getConnection(); sqlMap.setUserConnection(connection); // do work connection.commit(); } catch (SQLException e) { try { if (connection != null) commit.rollback(); } catch (SQLException ignored) { // generally ignored } throw e; // rethrow the exception } finally { try { if (connection != null) connection.close(); } catch (SQLException ignored) { // generally ignored } }
setUserConnection
in interface SqlMapTransactionManager
setUserConnection
in interface ExtendedSqlMapClient
SQLException
public Connection getUserConnection() throws SQLException
getUserConnection
in interface SqlMapTransactionManager
getUserConnection
in interface ExtendedSqlMapClient
SQLException
public Connection getCurrentConnection() throws SQLException
SqlMapTransactionManager
getCurrentConnection
in interface SqlMapTransactionManager
getCurrentConnection
in interface ExtendedSqlMapClient
SQLException
public DataSource getDataSource()
SqlMapTransactionManager
getDataSource
in interface SqlMapTransactionManager
getDataSource
in interface ExtendedSqlMapClient
public MappedStatement getMappedStatement(String id)
getMappedStatement
in interface ExtendedSqlMapClient
public boolean isLazyLoadingEnabled()
isLazyLoadingEnabled
in interface ExtendedSqlMapClient
public boolean isEnhancementEnabled()
isEnhancementEnabled
in interface ExtendedSqlMapClient
public SqlExecutor getSqlExecutor()
getSqlExecutor
in interface ExtendedSqlMapClient
public SqlMapExecutorDelegate getDelegate()
getDelegate
in interface ExtendedSqlMapClient
public SqlMapSession openSession()
SqlMapClient
openSession
in interface SqlMapClient
openSession
in interface ExtendedSqlMapClient
public SqlMapSession openSession(Connection conn)
SqlMapClient
try { Connection connection = dataSource.getConnection(); SqlMapSession session = sqlMap.openSession(connection); // do work connection.commit(); } catch (SQLException e) { try { if (connection != null) commit.rollback(); } catch (SQLException ignored) { // generally ignored } throw e; // rethrow the exception } finally { try { if (connection != null) connection.close(); } catch (SQLException ignored) { // generally ignored } }
openSession
in interface SqlMapClient
openSession
in interface ExtendedSqlMapClient
conn
- - the connection to use for the session
public SqlMapSession getSession()
getSession
in interface SqlMapClient
getSession
in interface ExtendedSqlMapClient
public void flushDataCache()
SqlMapClient
flushDataCache
in interface SqlMapClient
flushDataCache
in interface ExtendedSqlMapClient
public void flushDataCache(String cacheId)
SqlMapClient
flushDataCache
in interface SqlMapClient
flushDataCache
in interface ExtendedSqlMapClient
cacheId
- The cache model to flushprotected SqlMapSessionImpl getLocalSqlMapSession()
public ResultObjectFactory getResultObjectFactory()
getResultObjectFactory
in interface ExtendedSqlMapClient
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |