Method getCharacterStream(int columnIndex)
Return type: java.io.Reader
Member of: java.sql.ResultSet
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 assertNotNull(rs.getCharacterStream(1));
2 assertNull(rs.getCharacterStream(1));
3 rs.getCharacterStream(1);
4 reader = rs.getCharacterStream(1);
5 Reader reader = rs.getCharacterStream(mapping.getColumnIndex().intValue());
6 Reader in = rs.getCharacterStream(i+1+offset);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.