Interface ColumnWriter
-
- All Known Implementing Classes:
BlobColumnTranslator,ByteArrayColumnTranslator,ClobColumnTranslator,ColumnWriterWithCharEncoding,StringColumnTranslator
public interface ColumnWriterWrite a column into an Output stream.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidwrite(JdbcResultRow rs, int column, java.io.OutputStream out)Write the column into the specified outputstream.voidwrite(JdbcResultRow rs, java.lang.String columnName, java.io.OutputStream out)Write the column into the specified outputstream.
-
-
-
Method Detail
-
write
void write(JdbcResultRow rs, int column, java.io.OutputStream out) throws java.sql.SQLException, java.io.IOException
Write the column into the specified outputstream.- Parameters:
rs- the result setcolumn- the column indexout- the outputstream- Throws:
java.sql.SQLExceptionjava.io.IOException
-
write
void write(JdbcResultRow rs, java.lang.String columnName, java.io.OutputStream out) throws java.sql.SQLException, java.io.IOException
Write the column into the specified outputstream.- Parameters:
rs- the result setcolumnName- the column nameout- the outputstream- Throws:
java.sql.SQLExceptionjava.io.IOException
-
-