All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.postgresql.core.v3.DescribeRequest Maven / Gradle / Ivy

There is a newer version: 0.40.13
Show newest version
/*
 * Copyright (c) 2015, PostgreSQL Global Development Group
 * See the LICENSE file in the project root for more information.
 */

package org.postgresql.core.v3;

/**
 * Information for "pending describe queue".
 *
 * @see QueryExecutorImpl#pendingDescribeStatementQueue
 */
class DescribeRequest {
  public final SimpleQuery query;
  public final SimpleParameterList parameterList;
  public final boolean describeOnly;
  public final String statementName;

  DescribeRequest(SimpleQuery query, SimpleParameterList parameterList,
      boolean describeOnly, String statementName) {
    this.query = query;
    this.parameterList = parameterList;
    this.describeOnly = describeOnly;
    this.statementName = statementName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy