パッケージ org.postgresql.fastpath

クラス FastpathArg

java.lang.Object
org.postgresql.fastpath.FastpathArg

@Deprecated public class FastpathArg extends Object
推奨されていません。
This API is somewhat obsolete, as one may achieve similar performance and greater functionality by setting up a prepared statement to define the function call. Then, executing the statement with binary transmission of parameters and results substitutes for a fast-path function call.
Each fastpath call requires an array of arguments, the number and type dependent on the function being called.
  • コンストラクタの概要

    コンストラクタ
    コンストラクタ
    説明
    FastpathArg(byte[] bytes)
    推奨されていません。
    Constructs an argument that consists of an array of bytes.
    FastpathArg(byte @Nullable [] buf, int off, int len)
    推奨されていません。
    Constructs an argument that consists of part of a byte array.
    FastpathArg(int value)
    推奨されていません。
    Constructs an argument that consists of an integer value.
    FastpathArg(long value)
    推奨されていません。
    Constructs an argument that consists of an integer value.
    推奨されていません。
    Constructs an argument that consists of a String.
  • メソッドの概要

    修飾子とタイプ
    メソッド
    説明
    推奨されていません。
     

    クラスから継承されたメソッド java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • コンストラクタの詳細

    • FastpathArg

      public FastpathArg(int value)
      推奨されていません。
      Constructs an argument that consists of an integer value.
      パラメータ:
      value - int value to set
    • FastpathArg

      public FastpathArg(long value)
      推奨されていません。
      Constructs an argument that consists of an integer value.
      パラメータ:
      value - int value to set
    • FastpathArg

      public FastpathArg(byte[] bytes)
      推奨されていません。
      Constructs an argument that consists of an array of bytes.
      パラメータ:
      bytes - array to store
    • FastpathArg

      public FastpathArg(byte @Nullable [] buf, int off, int len)
      推奨されていません。
      Constructs an argument that consists of part of a byte array.
      パラメータ:
      buf - source array
      off - offset within array
      len - length of data to include
    • FastpathArg

      public FastpathArg(String s)
      推奨されていません。
      Constructs an argument that consists of a String.
      パラメータ:
      s - String to store
  • メソッドの詳細