Home | History | Annotate | Download | only in SQLite

Lines Matching defs:bind

42      *     s.bind(...);
44 * s.bind(...);
52 * s.bind(...);
54 * s.bind(...);
91 * Bind positional integer value to compiled SQLite3 statement.
96 public native void bind(int pos, int value) throws SQLite.Exception;
99 * Bind positional long value to compiled SQLite3 statement.
104 public native void bind(int pos, long value) throws SQLite.Exception;
107 * Bind positional double value to compiled SQLite3 statement.
112 public native void bind(int pos, double value) throws SQLite.Exception;
115 * Bind positional byte array to compiled SQLite3 statement.
120 public native void bind(int pos, byte[] value) throws SQLite.Exception;
123 * Bind positional String to compiled SQLite3 statement.
128 public native void bind(int pos, String value) throws SQLite.Exception;
131 * Bind positional SQL null to compiled SQLite3 statement.
135 public native void bind(int pos) throws SQLite.Exception;
138 * Bind positional zero'ed blob to compiled SQLite3 statement.