Package org.postgresql.fastpath
Class FastpathArg
- java.lang.Object
-
- org.postgresql.fastpath.FastpathArg
-
public class FastpathArg extends java.lang.Object
Each fastpath call requires an array of arguments, the number and type dependent on the function being called.
-
-
Constructor Summary
Constructors Constructor Description FastpathArg(byte[] bytes)
Constructs an argument that consists of an array of bytesFastpathArg(byte[] buf, int off, int len)
Constructs an argument that consists of part of a byte arrayFastpathArg(int value)
Constructs an argument that consists of an integer valueFastpathArg(long value)
Constructs an argument that consists of an integer valueFastpathArg(java.lang.String s)
Constructs an argument that consists of a String.
-
-
-
Constructor Detail
-
FastpathArg
public FastpathArg(int value)
Constructs an argument that consists of an integer value- Parameters:
value
- int value to set
-
FastpathArg
public FastpathArg(long value)
Constructs an argument that consists of an integer value- Parameters:
value
- int value to set
-
FastpathArg
public FastpathArg(byte[] bytes)
Constructs an argument that consists of an array of bytes- Parameters:
bytes
- array to store
-
FastpathArg
public FastpathArg(byte[] buf, int off, int len)
Constructs an argument that consists of part of a byte array- Parameters:
buf
- source arrayoff
- offset within arraylen
- length of data to include
-
FastpathArg
public FastpathArg(java.lang.String s)
Constructs an argument that consists of a String.- Parameters:
s
- String to store
-
-