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

org.postgresql.jdbc.PgPreparedStatement Maven / Gradle / Ivy

There is a newer version: 42.7.3
Show newest version
/*-------------------------------------------------------------------------
*
* Copyright (c) 2004-2015, PostgreSQL Global Development Group
*
*
*-------------------------------------------------------------------------
*/
package org.postgresql.jdbc;

import java.sql.PreparedStatement;
import java.sql.SQLException;

class PgPreparedStatement extends PgStatement implements PreparedStatement
{
    PgPreparedStatement(PgConnection connection, String sql, int rsType, int rsConcurrency, int rsHoldability) throws SQLException
    {
        this(connection, sql, false, rsType, rsConcurrency, rsHoldability);
    }

    PgPreparedStatement(PgConnection connection, String sql, boolean isCallable, int rsType, int rsConcurrency, int rsHoldability) throws SQLException
    {
        super(connection, sql, isCallable, rsType, rsConcurrency, rsHoldability);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy