Package org.apache.openjpa.jdbc.kernel
Interface PreparedStatementManager
- All Known Implementing Classes:
BatchingPreparedStatementManagerImpl
,PreparedStatementManagerImpl
public interface PreparedStatementManager
Manages prepared statement execution.
- Author:
- Abe White
-
Method Summary
Modifier and TypeMethodDescriptionvoid
flush()
This method must be called after the last row has been flushed, to flush any remaining statements.void
Flush the given row.Return the exceptions encountered during all flushes.
-
Method Details
-
getExceptions
Collection getExceptions()Return the exceptions encountered during all flushes. -
flush
Flush the given row. -
flush
void flush()This method must be called after the last row has been flushed, to flush any remaining statements.
-