Uses of Class
org.postgresql.fastpath.FastpathArg
-
Packages that use FastpathArg Package Description org.postgresql.fastpath -
-
Uses of FastpathArg in org.postgresql.fastpath
Subclasses of FastpathArg in org.postgresql.fastpath Modifier and Type Class Description (package private) static class
FastpathArg.ByteStreamWriterFastpathArg
Methods in org.postgresql.fastpath that return FastpathArg Modifier and Type Method Description static FastpathArg
Fastpath. createOIDArg(long oid)
Creates a FastpathArg with an oid parameter.static FastpathArg
FastpathArg. of(ByteStreamWriter writer)
Methods in org.postgresql.fastpath with parameters of type FastpathArg Modifier and Type Method Description java.lang.Object
Fastpath. fastpath(int fnId, boolean resultType, FastpathArg[] args)
Deprecated.please useFastpath.fastpath(int, FastpathArg[])
byte[]
Fastpath. fastpath(int fnId, FastpathArg[] args)
Send a function call to the PostgreSQL backend.java.lang.Object
Fastpath. fastpath(java.lang.String name, boolean resulttype, FastpathArg[] args)
Deprecated.UseFastpath.getData(String, FastpathArg[])
if you expect a binary result, or one ofFastpath.getInteger(String, FastpathArg[])
orFastpath.getLong(String, FastpathArg[])
if you expect a numeric onebyte[]
Fastpath. fastpath(java.lang.String name, FastpathArg[] args)
Send a function call to the PostgreSQL backend by name.byte[]
Fastpath. getData(java.lang.String name, FastpathArg[] args)
This convenience method assumes that the return value is not an Integer.int
Fastpath. getInteger(java.lang.String name, FastpathArg[] args)
This convenience method assumes that the return value is an integer.long
Fastpath. getLong(java.lang.String name, FastpathArg[] args)
This convenience method assumes that the return value is a long (bigint).long
Fastpath. getOID(java.lang.String name, FastpathArg[] args)
This convenience method assumes that the return value is an oid.
-