Uses of Class
org.postgresql.pljava.internal.Oid

Packages that use Oid
org.postgresql.pljava.internal   
org.postgresql.pljava.jdbc   
 

Uses of Oid in org.postgresql.pljava.internal
 

Methods in org.postgresql.pljava.internal that return Oid
static Oid LargeObject.create(int flags)
          Creates a LargeObject handle and returns the Oid of that handle.
static Oid Oid.forJavaClass(Class clazz)
          Finds the PostgreSQL well known Oid for the given class.
static Oid Oid.forSqlType(int sqlType)
          Finds the PostgreSQL well known Oid for the XOPEN Sql type.
static Oid Oid.forTypeName(String typeString)
          Finds the PostgreSQL well known Oid for a type name.
 Oid LargeObject.getId()
           
 Oid TupleDesc.getOid(int index)
          Returns OID of the column type.
static Oid Oid.getTypeId()
          Returns the PostgreSQL type id for the Oid type.
 

Methods in org.postgresql.pljava.internal with parameters of type Oid
static int LargeObject.drop(Oid lobjId)
           
 boolean AclId.hasSchemaCreatePermission(Oid oid)
          Return true if this AclId has the right to create new objects in the given schema.
static LargeObject LargeObject.open(Oid lobjId, int flags)
           
static ExecutionPlan ExecutionPlan.prepare(String statement, Oid[] argTypes)
          Create an execution plan for a statement to be executed later using the internal SPI_prepare function.
static void Oid.registerType(Class clazz, Oid typeId)
          A Type well known to PostgreSQL but not known as a standard XOPEN SQL type can be registered here.
 

Uses of Oid in org.postgresql.pljava.jdbc
 

Fields in org.postgresql.pljava.jdbc declared as Oid
static Oid TypeOid.BOOL
           
static Oid TypeOid.BPCHAR
           
static Oid TypeOid.BYTEA
           
static Oid TypeOid.DATE
           
static Oid TypeOid.FLOAT4
           
static Oid TypeOid.FLOAT8
           
static Oid TypeOid.INT2
           
static Oid TypeOid.INT4
           
static Oid TypeOid.INT8
           
static Oid TypeOid.INVALID
           
static Oid TypeOid.NUMERIC
           
static Oid TypeOid.OID
           
static Oid TypeOid.TEXT
           
static Oid TypeOid.TIME
           
static Oid TypeOid.TIMESTAMP
           
static Oid TypeOid.TIMESTAMPTZ
           
static Oid TypeOid.VARCHAR
           
 

Methods in org.postgresql.pljava.jdbc that return Oid
 Oid ResultSetField.getOID()
           
protected  Oid SyntheticResultSetMetaData.getOid(int column)
          Gets column OID
protected  Oid SPIResultSetMetaData.getOid(int column)
          Gets column OID
protected abstract  Oid AbstractResultSetMetaData.getOid(int column)
          Gets column OID
 

Methods in org.postgresql.pljava.jdbc with parameters of type Oid
 String SPIConnection.getPGType(Oid oid)
           
 int SPIConnection.getSQLType(Oid oid)
           
 

Constructors in org.postgresql.pljava.jdbc with parameters of type Oid
ResultSetField(String name, Oid oid, int len)
           
ResultSetField(String name, Oid oid, int len, int mod)