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

org.postgresql.jdbc4.AbstractJdbc4Array Maven / Gradle / Ivy

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

import java.sql.*;
import org.postgresql.core.*;
import org.postgresql.jdbc2.AbstractJdbc2Array;

public abstract class AbstractJdbc4Array extends AbstractJdbc2Array
{

    public AbstractJdbc4Array(BaseConnection connection, int oid, byte[] fieldBytes) throws SQLException
    {
        super(connection, oid, fieldBytes);
    }

    public AbstractJdbc4Array(BaseConnection connection, int oid, String fieldString) throws SQLException
    {
        super(connection, oid, fieldString);
    }

    public void free() throws SQLException
    {
        connection = null;
        fieldString = null;
        fieldBytes = null;
        arrayList = null;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy