HomeSort by relevance Sort by last modified time
    Searched refs:colName (Results 1 - 7 of 7) sorted by null

  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSet.java 1142 public void updateNull(String colName) throws SQLException {
1143 int col = findColumn(colName);
1147 public void updateBoolean(String colName, boolean b) throws SQLException {
1148 int col = findColumn(colName);
1152 public void updateByte(String colName, byte b) throws SQLException {
1153 int col = findColumn(colName);
1157 public void updateShort(String colName, short b) throws SQLException {
1158 int col = findColumn(colName);
1162 public void updateInt(String colName, int b) throws SQLException {
1163 int col = findColumn(colName);
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CursorBackedSuggestionCursor.java 246 protected int getColumnIndex(String colName) {
249 return mCursor.getColumnIndex(colName);
280 * @param colName Column name.
283 protected String getStringOrNull(String colName) {
284 int col = getColumnIndex(colName);
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerEntry.java 245 private static Float getNullableFloat(Cursor cursor, String colName) {
247 int colIndex = cursor.getColumnIndexOrThrow(colName);
  /libcore/luni/src/main/java/java/sql/
ResultSet.java 253 * @param colName
259 public Array getArray(String colName) throws SQLException;
522 * @param colName
529 public Clob getClob(String colName) throws SQLException;
837 * @param colName
843 public Ref getRef(String colName) throws SQLException;
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDatabase.java     [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/javax/sql/
Impl_RowSet.java 285 public Array getArray(String colName) throws SQLException {
367 public Clob getClob(String colName) throws SQLException {
461 public Ref getRef(String colName) throws SQLException {
  /libcore/luni/src/test/java/libcore/java/sql/
OldResultSetGetterTests.java 721 String colName = colNameIt.next();
724 assertTrue("Wrong column name at " + i, colName
    [all...]

Completed in 1675 milliseconds