Lines Matching defs:SQLite

1 package SQLite;
32 public native boolean prepare() throws SQLite.Exception;
60 * } catch (SQLite.Exception e) {
69 public native boolean step() throws SQLite.Exception;
75 public native void close() throws SQLite.Exception;
82 public native void reset() throws SQLite.Exception;
88 public native void clear_bindings() throws SQLite.Exception;
96 public native void bind(int pos, int value) throws SQLite.Exception;
104 public native void bind(int pos, long value) throws SQLite.Exception;
112 public native void bind(int pos, double value) throws SQLite.Exception;
120 public native void bind(int pos, byte[] value) throws SQLite.Exception;
128 public native void bind(int pos, String value) throws SQLite.Exception;
135 public native void bind(int pos) throws SQLite.Exception;
144 throws SQLite.Exception;
151 public native int bind_parameter_count() throws SQLite.Exception;
159 public native String bind_parameter_name(int pos) throws SQLite.Exception;
168 throws SQLite.Exception;
177 public native int column_int(int col) throws SQLite.Exception;
184 public native long column_long(int col) throws SQLite.Exception;
191 public native double column_double(int col) throws SQLite.Exception;
198 public native byte[] column_bytes(int col) throws SQLite.Exception;
205 public native String column_string(int col) throws SQLite.Exception;
210 * @return column type code, e.g. SQLite.Constants.SQLITE_INTEGER
212 public native int column_type(int col) throws SQLite.Exception;
219 public native int column_count() throws SQLite.Exception;
227 public Object column(int col) throws SQLite.Exception {
247 public native String column_table_name(int col) throws SQLite.Exception;
255 public native String column_database_name(int col) throws SQLite.Exception;
263 public native String column_decltype(int col) throws SQLite.Exception;
271 public native String column_origin_name(int col) throws SQLite.Exception;