Package net.sourceforge.jdbcimporter.columntranslator

Provides the classes that implement the ColumnTranslator interface.

See:
          Description

Class Summary
BooleanToIntColumnTranslator The BooleanToIntColumnTranslator translates a column value of 'true' into an integer (default '1') and 'false' into an integer (default '0') if the column is of type 'BOOLEAN'.
FileToStringColumnTranslator The FileToStringColumnTranslator translates an InputStream into a filename by writing the contents of the InputStream into a file.
IntToBooleanColumnTranslator The IntToBooleanColumnTranslator translates a column value (default '1') into 'true' and (default '0') into 'false' if the column is of type 'BOOLEAN'.
StringToFileColumnTranslator The StringToFileColumnTranslator translates a String into an InputStream by reading in a file whose name matches the string.
SystemTimeColumnTranslator The SystemTimeColumnTranslator translates a specific column value (default: 'SYSTEMTIME') into the current date/time if the column is of type 'DATE', 'TIMESTAMP' or 'TIME'.
 

Package net.sourceforge.jdbcimporter.columntranslator Description

Provides the classes that implement the ColumnTranslator interface.