Package | Description |
---|---|
org.postgresql.fastpath |
Modifier and Type | Method and Description |
---|---|
static FastpathArg |
Fastpath.createOIDArg(long oid)
Deprecated.
Creates a FastpathArg with an oid parameter.
|
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
Fastpath.fastpath(int fnId,
boolean resultType,
FastpathArg[] args)
Deprecated.
please use
Fastpath.fastpath(int, FastpathArg[]) |
byte[] |
Fastpath.fastpath(int fnId,
FastpathArg[] args)
Deprecated.
Send a function call to the PostgreSQL backend.
|
java.lang.Object |
Fastpath.fastpath(java.lang.String name,
boolean resulttype,
FastpathArg[] args)
Deprecated.
Use
Fastpath.getData(String, FastpathArg[]) if you expect a binary result, or one
of Fastpath.getInteger(String, FastpathArg[]) or
Fastpath.getLong(String, FastpathArg[]) if you expect a numeric one |
byte[] |
Fastpath.fastpath(java.lang.String name,
FastpathArg[] args)
Deprecated.
Send a function call to the PostgreSQL backend by name.
|
byte[] |
Fastpath.getData(java.lang.String name,
FastpathArg[] args)
Deprecated.
This convenience method assumes that the return value is not an Integer.
|
int |
Fastpath.getInteger(java.lang.String name,
FastpathArg[] args)
Deprecated.
This convenience method assumes that the return value is an integer.
|
long |
Fastpath.getLong(java.lang.String name,
FastpathArg[] args)
Deprecated.
This convenience method assumes that the return value is a long (bigint).
|
long |
Fastpath.getOID(java.lang.String name,
FastpathArg[] args)
Deprecated.
This convenience method assumes that the return value is an oid.
|
Copyright © 2021 PostgreSQL Global Development Group. All rights reserved.