changeState();
}
public void sendPrepareQuery(PostgresqlString name, PostgresqlString query, int[] oids) throws IOException {
checkIsReady();
currentOutBuffer = new Parse(name, query, oids).toBytes();
state = ConnectionState.SendingParse;
if (!nonBlocking)
socket.configureBlocking(true);
socket.write(currentOutBuffer);
if (!nonBlocking)