Package org.jruby.pg.internal.messages

Examples of org.jruby.pg.internal.messages.Bind


    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);
View Full Code Here

TOP

Related Classes of org.jruby.pg.internal.messages.Bind

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.