类 PreparedStatement

java.lang.Object
com.tencent.wcdb.core.PreparedStatement

public class PreparedStatement extends Object
  • 构造器详细资料

    • PreparedStatement

      public PreparedStatement()
  • 方法详细资料

    • bindBool

      public void bindBool(boolean value, int index)
    • bindInteger

      public void bindInteger(long value, int index)
    • bindDouble

      public void bindDouble(double value, int index)
    • bindText

      public void bindText(String value, int index)
    • bindBLOB

      public void bindBLOB(byte[] value, int index)
    • bindNull

      public void bindNull(int index)
    • getColumnType

      public ColumnType getColumnType(int index)
    • getBool

      public boolean getBool(int index)
    • getInteger

      public long getInteger(int index)
    • getDouble

      public double getDouble(int index)
    • getText

      public String getText(int index)
    • getBLOB

      public byte[] getBLOB(int index)
    • getColumnCount

      public int getColumnCount()