}
public InputStream getBinaryStream() throws SQLException {
ReaderInputStream ris = new ReaderInputStream(searchstr.getCharacterStream(), Charset.forName("UTF-16")); //$NON-NLS-1$
try {
ris.skip(2);
return ris;
} catch (IOException e) {
throw new SQLException(e);
}
}