org.postgresql.jdbc4.Jdbc4Array 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
*
*
*-------------------------------------------------------------------------
*/
package org.postgresql.jdbc4;
import java.util.Map;
import org.postgresql.core.*;
import org.postgresql.jdbc2.ArrayAssistantRegistry;
import org.postgresql.jdbc4.array.UUIDArrayAssistant;
import java.sql.SQLException;
import java.sql.ResultSet;
public class Jdbc4Array extends org.postgresql.jdbc2.AbstractJdbc2Array implements java.sql.Array
{
static {
ArrayAssistantRegistry.register(Oid.UUID, new UUIDArrayAssistant());
ArrayAssistantRegistry.register(Oid.UUID_ARRAY, new UUIDArrayAssistant());
}
public Jdbc4Array(BaseConnection conn, int oid, String fieldString) throws SQLException
{
super(conn, oid, fieldString);
}
public Jdbc4Array(BaseConnection conn, int oid, byte[] fieldBytes) throws SQLException
{
super(conn, oid, fieldBytes);
}
public Object getArray(Map < String, Class < ? >> map) throws SQLException
{
return getArrayImpl(map);
}
public Object getArray(long index, int count, Map < String, Class < ? >> map) throws SQLException
{
return getArrayImpl(index, count, map);
}
public ResultSet getResultSet(Map < String, Class < ? >> map) throws SQLException
{
return getResultSetImpl(map);
}
public ResultSet getResultSet(long index, int count, Map < String, Class < ? >> map) throws SQLException
{
return getResultSetImpl(index, count, map);
}
public void free() throws SQLException
{
throw org.postgresql.Driver.notImplemented(this.getClass(), "free()");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy