sendDescribeCommon(message);
}
public void sendQuery(PostgresqlString query) throws IOException {
checkIsReady();
currentOutBuffer = new Query(query).toBytes();
state = ConnectionState.SendingQuery;
if (!nonBlocking)
socket.configureBlocking(true);
socket.write(currentOutBuffer);
if (!nonBlocking)