Interface JDBCValueMappings.PrimitiveValueWriter
-
- All Known Subinterfaces:
JDBCValueMappings.ValueWriter<JALO,DB>
- All Known Implementing Classes:
JDBCValueMappings.AbstractValueReaderWriter
,JDBCValueMappings.BlobValueWriter
,JDBCValueMappings.DefaultDateTimestampValueReaderWriter
,JDBCValueMappings.DefaultIntegerValueReaderWriter
,JDBCValueMappings.DefaultLongReaderWriter
,JDBCValueMappings.DefaultStringValueReaderWriter
,JDBCValueMappings.ItemPropertyValueReaderWriter
,JDBCValueMappings.ItemReaderWriter
,JDBCValueMappings.PKReaderWriter
- Enclosing class:
- JDBCValueMappings
public static interface JDBCValueMappings.PrimitiveValueWriter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, boolean value)
void
setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, byte value)
void
setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, char value)
void
setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, double value)
void
setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, float value)
void
setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, int value)
void
setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, long value)
void
setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, short value)
-
-
-
Method Detail
-
setPrimitive
void setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, long value) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
setPrimitive
void setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, short value) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
setPrimitive
void setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, char value) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
setPrimitive
void setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, double value) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
setPrimitive
void setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, byte value) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
setPrimitive
void setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, float value) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
setPrimitive
void setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, int value) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
setPrimitive
void setPrimitive(java.sql.PreparedStatement stmt, int fieldIndex, boolean value) throws java.sql.SQLException
- Throws:
java.sql.SQLException
-
-