
org.postgresql.jdbc4.Jdbc4Array Maven / Gradle / Ivy
/*-------------------------------------------------------------------------
*
* Copyright (c) 2004-2014, 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 AbstractJdbc4Array 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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy