Methods Summary |
---|
public void | close()Closes the output stream.
output.close();
|
public void | flush()Flushes the output queue.
output.flush();
|
public void | write(byte[] bytes)Writes some data out to the mSQL database.
int size = bytes.length;
for(int i=0; i<4; i++) {
output.write(size);
size >>>= 8;
}
output.write(bytes, 0, bytes.length);
output.flush();
|
public void | writeAsciiString(java.lang.String str)Writes a string out as ASCII to the mSQL database.
write(str.getBytes("8859_9"));
|
public void | writeUnicodeString(java.lang.String str)Writes a string out as Unicode to the mSQL database.
write(str.getBytes("Unicode"));
|