| org.objectweb.jonas.resource.SQLManager
All known Subclasses: org.objectweb.jonas.resource.ConnectionManagerImpl,
SQLManager | public interface SQLManager (Code) | | SQL Manager to be used with PreparedStatment
author: ehardesty |
Method Summary | |
int | getMaxPstmtPoolSize() | PreparedStatement | getPStatement(MCInfo mcinfo, Object conn, String user, String sql) | PreparedStatement | getPStatement(MCInfo mcinfo, Object conn, String user, String sql, int resultSetType, int resultSetConcurrency) | PreparedStatement | getPStatement(MCInfo mcinfo, Object conn, String user, String sql, int autoGeneratedKeys) | PreparedStatement | getPStatement(MCInfo mcinfo, Object conn, String user, String sql, int[] columnIndexes) | PreparedStatement | getPStatement(MCInfo mcinfo, Object conn, String user, String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) | PreparedStatement | getPStatement(MCInfo mcinfo, Object conn, String user, String sql, String[] columnNames) |
getMaxPstmtPoolSize | int getMaxPstmtPoolSize()(Code) | | Returns the maxPstmtPoolSize |
getPStatement | PreparedStatement getPStatement(MCInfo mcinfo, Object conn, String user, String sql, int resultSetType, int resultSetConcurrency) throws SQLException(Code) | | Get the specified PreparedStatement
Parameters: mcinfo - MCInfo Parameters: conn - Object connection Parameters: user - String Parameters: sql - String Parameters: resultSetType - int Parameters: resultSetConcurrency - int PreparedStatment throws: SQLException - if an Exception occurs |
getPStatement | PreparedStatement getPStatement(MCInfo mcinfo, Object conn, String user, String sql, int autoGeneratedKeys) throws SQLException(Code) | | Get the specified PreparedStatement
Parameters: mcinfo - MCInfo Parameters: conn - Object connection Parameters: user - String Parameters: sql - String Parameters: autoGeneratedKeys - key PreparedStatment throws: SQLException - if an Exception occurs |
getPStatement | PreparedStatement getPStatement(MCInfo mcinfo, Object conn, String user, String sql, int[] columnIndexes) throws SQLException(Code) | | Get the specified PreparedStatement
Parameters: mcinfo - MCInfo Parameters: conn - Object connection Parameters: user - String Parameters: sql - String Parameters: columnIndexes - int [] PreparedStatment throws: SQLException - if an Exception occurs |
getPStatement | PreparedStatement getPStatement(MCInfo mcinfo, Object conn, String user, String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException(Code) | | Get the specified PreparedStatement
Parameters: mcinfo - MCInfo Parameters: conn - Object connection Parameters: user - String Parameters: sql - String Parameters: resultSetType - int Parameters: resultSetConcurrency - int Parameters: resultSetHoldability - int PreparedStatment throws: SQLException - if an Exception occurs |
getPStatement | PreparedStatement getPStatement(MCInfo mcinfo, Object conn, String user, String sql, String[] columnNames) throws SQLException(Code) | | Get the specified PreparedStatement
Parameters: mcinfo - MCInfo Parameters: conn - Object connection Parameters: user - String Parameters: sql - String Parameters: columnNames - String [] PreparedStatment throws: SQLException - if an Exception occurs |
|
|