org.postgresql.core.v3.V3Query Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fdb-sql-layer-jdbc Show documentation
Show all versions of fdb-sql-layer-jdbc Show documentation
The FoundationDB SQL Layer Driver for JDBC4
/*-------------------------------------------------------------------------
*
* Copyright (c) 2004-2011, PostgreSQL Global Development Group
* Copyright (c) 2004, Open Cloud Limited.
*
*
*-------------------------------------------------------------------------
*/
package org.postgresql.core.v3;
import org.postgresql.core.Query;
/**
* Common interface for all V3 query implementations.
*
* @author Oliver Jowett ([email protected])
*/
interface V3Query extends Query {
/**
* Return a list of the SimpleQuery objects that
* make up this query. If this object is already a
* SimpleQuery, returns null (avoids an extra array
* construction in the common case).
*
* @return an array of single-statement queries, or null
* if this object is already a single-statement query.
*/
SimpleQuery[] getSubqueries();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy