Package com.glyart.asql.common.defaults
Class DefaultCreator
- java.lang.Object
-
- com.glyart.asql.common.defaults.DefaultCreator
-
- All Implemented Interfaces:
PreparedStatementCreator
public class DefaultCreator extends Object implements PreparedStatementCreator
-
-
Constructor Summary
Constructors Constructor Description DefaultCreator(String sql)
DefaultCreator(String sql, boolean getGeneratedKeys)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PreparedStatement
createPreparedStatement(Connection connection)
Creates a PreparedStatement in this connection.
-
-
-
Method Detail
-
createPreparedStatement
public PreparedStatement createPreparedStatement(@NotNull Connection connection) throws SQLException
Description copied from interface:PreparedStatementCreator
Creates a PreparedStatement in this connection. There is no need to close the PreparedStatement: the DataTemplate class will do that.- Specified by:
createPreparedStatement
in interfacePreparedStatementCreator
- Parameters:
connection
- the connection for creating the PreparedStatement- Returns:
- a PreparedStatement object
- Throws:
SQLException
- if something goes wrong during the PreparedStatement creation (no need to catch)
-
-