this.format = format;
}
public void sendExecPrepared(PostgresqlString name, Value[] values, Format format) throws IOException {
checkIsReady();
currentOutBuffer = new Bind(PostgresqlString.NULL_STRING, name, values, format).toBytes();
shouldDescribe = true;
shouldExecute = true;
state = ConnectionState.SendingBind;
if (!nonBlocking)
socket.configureBlocking(true);