Lines Matching refs:Exception
32 public native boolean prepare() throws SQLite.Exception; in prepare()
69 public native boolean step() throws SQLite.Exception; in step()
75 public native void close() throws SQLite.Exception; in close()
82 public native void reset() throws SQLite.Exception; in reset()
88 public native void clear_bindings() throws SQLite.Exception; in clear_bindings()
96 public native void bind(int pos, int value) throws SQLite.Exception; in bind()
104 public native void bind(int pos, long value) throws SQLite.Exception; in bind()
112 public native void bind(int pos, double value) throws SQLite.Exception; in bind()
120 public native void bind(int pos, byte[] value) throws SQLite.Exception; in bind()
128 public native void bind(int pos, String value) throws SQLite.Exception; in bind()
135 public native void bind(int pos) throws SQLite.Exception; in bind()
144 throws SQLite.Exception; in bind_zeroblob()
151 public native int bind_parameter_count() throws SQLite.Exception; in bind_parameter_count()
159 public native String bind_parameter_name(int pos) throws SQLite.Exception; in bind_parameter_name()
168 throws SQLite.Exception; in bind_parameter_index()
177 public native int column_int(int col) throws SQLite.Exception; in column_int()
184 public native long column_long(int col) throws SQLite.Exception; in column_long()
191 public native double column_double(int col) throws SQLite.Exception; in column_double()
198 public native byte[] column_bytes(int col) throws SQLite.Exception; in column_bytes()
205 public native String column_string(int col) throws SQLite.Exception; in column_string()
212 public native int column_type(int col) throws SQLite.Exception; in column_type()
219 public native int column_count() throws SQLite.Exception; in column_count()
227 public Object column(int col) throws SQLite.Exception { in column()
247 public native String column_table_name(int col) throws SQLite.Exception; in column_table_name()
255 public native String column_database_name(int col) throws SQLite.Exception; in column_database_name()
263 public native String column_decltype(int col) throws SQLite.Exception; in column_decltype()
271 public native String column_origin_name(int col) throws SQLite.Exception; in column_origin_name()