Uses of Class
org.postgresql.fastpath.FastpathArg

Packages that use FastpathArg
org.postgresql.fastpath   
 

Uses of FastpathArg in org.postgresql.fastpath
 

Methods in org.postgresql.fastpath that return FastpathArg
static FastpathArg Fastpath.createOIDArg(long oid)
          Creates a FastpathArg with an oid parameter.
 

Methods in org.postgresql.fastpath with parameters of type FastpathArg
 Object Fastpath.fastpath(int fnId, boolean resultType, FastpathArg[] args)
          Deprecated. please use Fastpath.fastpath(int, FastpathArg[])
 byte[] Fastpath.fastpath(int fnId, FastpathArg[] args)
          Send a function call to the PostgreSQL backend
 Object Fastpath.fastpath(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(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
 int Fastpath.getInteger(String name, FastpathArg[] args)
          This convenience method assumes that the return value is an integer
 long Fastpath.getLong(String name, FastpathArg[] args)
          This convenience method assumes that the return value is a long (bigint)
 long Fastpath.getOID(String name, FastpathArg[] args)
          This convenience method assumes that the return value is an oid.
 



Copyright © 2016 PostgreSQL Global Development Group. All rights reserved.