Package org.jdbi.v3.core.argument
Class NullArgument
java.lang.Object
org.jdbi.v3.core.argument.NullArgument
- All Implemented Interfaces:
 Argument
A typed SQL null argument.
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionvoidapply(int position, PreparedStatement statement, StatementContext ctx) Apply the argument to the given prepared statement.Returns theTypesvalue that is used.toString() 
- 
Constructor Details
- 
NullArgument
public NullArgument(int sqlType) - Parameters:
 sqlType- the SQL type of the Null- See Also:
 
 - 
NullArgument
- Parameters:
 sqlType- the SQL type of the Null- See Also:
 
 
 - 
 - 
Method Details
- 
apply
public void apply(int position, PreparedStatement statement, StatementContext ctx) throws SQLException Description copied from interface:ArgumentApply the argument to the given prepared statement.- Specified by:
 applyin interfaceArgument- Parameters:
 position- the position to which the argument should be bound, using the stupid JDBC "start at 1" bitstatement- the prepared statement the argument is to be bound toctx- the statement context- Throws:
 SQLException- if anything goes wrong
 - 
getSqlType
Returns theTypesvalue that is used.- Returns:
 - the SQL type of the null.
 - See Also:
 
 - 
toString
 
 -