Package org.jruby.pg.internal.messages

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


    changeState();
  }

  public void sendDescribePortal(PostgresqlString name) throws IOException {
    checkIsReady();
    Describe message = new Describe(name, StatementType.Portal);
    sendDescribeCommon(message);
  }
View Full Code Here


    sendDescribeCommon(message);
  }

  public void sendDescribePrepared(PostgresqlString name) throws IOException {
    checkIsReady();
    Describe message = new Describe(name, StatementType.Prepared);
    sendDescribeCommon(message);
  }
View Full Code Here

TOP

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

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.