Uses of Class
org.postgresql.fastpath.FastpathArg
Packages that use FastpathArg
-
Uses of FastpathArg in org.postgresql.fastpath
Methods in org.postgresql.fastpath that return FastpathArgModifier and TypeMethodDescriptionstatic 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 FastpathArgModifier and TypeMethodDescriptionFastpath.fastpath(int fnId, boolean resultType, FastpathArg[] args) Deprecated.byte[]Fastpath.fastpath(int fnId, FastpathArg[] args) Send a function call to the PostgreSQL backend.Fastpath.fastpath(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(String name, FastpathArg[] args) Send a function call to the PostgreSQL backend by name.byte[]Fastpath.getData(String name, FastpathArg[] args) This convenience method assumes that the return value is not an Integer.intFastpath.getInteger(String name, FastpathArg[] args) This convenience method assumes that the return value is an integer.longFastpath.getLong(String name, FastpathArg[] args) This convenience method assumes that the return value is a long (bigint).longFastpath.getOID(String name, FastpathArg[] args) This convenience method assumes that the return value is an oid.
Fastpath.fastpath(int, FastpathArg[])