net.sf.basedb.core.migrate
Class BooleanWriter
java.lang.Object
net.sf.basedb.core.migrate.AbstractResultWriter
net.sf.basedb.core.migrate.BooleanWriter
- All Implemented Interfaces:
- ResultWriter
public class BooleanWriter
- extends AbstractResultWriter
Database-independent writer implementation that writes boolean
values from a result set. This writer writes "true" or "false"
for non-null values or the given nullEscape
value
for null values and uses ResultSet.getBoolean(int)
to
get the current result set value.
- Since:
- 3.1
- Author:
- Nicklas
- Last modified
- $Date$
Field Summary |
private static char[] |
FALSE
|
private static char[] |
TRUE
|
Method Summary |
void |
write()
Write the current data. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
TRUE
private static final char[] TRUE
FALSE
private static final char[] FALSE
BooleanWriter
public BooleanWriter(ResultSet rs,
int index,
Writer writer,
char[] nullEscape)
write
public void write()
throws SQLException,
IOException
- Description copied from interface:
ResultWriter
- Write the current data.
- Throws:
SQLException
IOException