Class NullableColumnBinder
java.lang.Object
org.apache.arrow.adapter.jdbc.binder.NullableColumnBinder
- All Implemented Interfaces:
- ColumnBinder
A ColumnBinder that checks for nullability before deferring to a type-specific binder.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidbind(PreparedStatement statement, int parameterIndex, int rowIndex) Bind the given row to the given parameter.intGet the JDBC type code used by this binder.Get the vector used by this binder.
- 
Constructor Details- 
NullableColumnBinder
 
- 
- 
Method Details- 
bindDescription copied from interface:ColumnBinderBind the given row to the given parameter.- Specified by:
- bindin interface- ColumnBinder
- Parameters:
- statement- The statement to bind to.
- parameterIndex- The parameter to bind to (1-indexed)
- rowIndex- The row to bind values from (0-indexed)
- Throws:
- SQLException- if an error occurs
 
- 
getJdbcTypepublic int getJdbcType()Description copied from interface:ColumnBinderGet the JDBC type code used by this binder.- Specified by:
- getJdbcTypein interface- ColumnBinder
- Returns:
- A type code from Types.
 
- 
getVectorDescription copied from interface:ColumnBinderGet the vector used by this binder.- Specified by:
- getVectorin interface- ColumnBinder
 
 
-