Home | History | Annotate | Download | only in SQLite

Lines Matching refs:col

173      * @param col column number, 0-based
177 public native int column_int(int col) throws SQLite.Exception;
181 * @param col column number, 0-based
184 public native long column_long(int col) throws SQLite.Exception;
188 * @param col column number, 0-based
191 public native double column_double(int col) throws SQLite.Exception;
195 * @param col column number, 0-based
198 public native byte[] column_bytes(int col) throws SQLite.Exception;
202 * @param col column number, 0-based
205 public native String column_string(int col) throws SQLite.Exception;
209 * @param col column number, 0-based
212 public native int column_type(int col) throws SQLite.Exception;
223 * @param col column number, 0-based
227 public Object column(int col) throws SQLite.Exception {
228 switch (column_type(col)) {
230 return Long.valueOf(column_long(col)); // android-changed: performance;
232 return new Double(column_double(col));
234 return column_bytes(col);
236 return column_string(col);
243 * @param col column number, 0-based
247 public native String column_table_name(int col) throws SQLite.Exception;
251 * @param col column number, 0-based
255 public native String column_database_name(int col) throws SQLite.Exception;
259 * @param col column number, 0-based
263 public native String column_decltype(int col) throws SQLite.Exception;
267 * @param col column number, 0-based
271 public native String column_origin_name(int col) throws SQLite.Exception;