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 classFastpathArg.ByteStreamWriterFastpathArgMethods in org.postgresql.fastpath that return FastpathArg Modifier and Type Method Description static FastpathArgFastpath. createOIDArg(long oid)Creates a FastpathArg with an oid parameter.static FastpathArgFastpathArg. of(ByteStreamWriter writer)Methods in org.postgresql.fastpath with parameters of type FastpathArg Modifier and Type Method Description java.lang.ObjectFastpath. 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.ObjectFastpath. 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.intFastpath. getInteger(java.lang.String name, FastpathArg[] args)This convenience method assumes that the return value is an integer.longFastpath. getLong(java.lang.String name, FastpathArg[] args)This convenience method assumes that the return value is a long (bigint).longFastpath. getOID(java.lang.String name, FastpathArg[] args)This convenience method assumes that the return value is an oid.
-