All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.database.DatabaseUtils Maven / Gradle / Ivy

Go to download

A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag that was used to checkout the source from the Git repos was android-2.1_r2.

There is a newer version: 4.1.1.4
Show newest version
package android.database;
public class DatabaseUtils
{
public static class InsertHelper
{
public  InsertHelper(android.database.sqlite.SQLiteDatabase db, java.lang.String tableName) { throw new RuntimeException("Stub!"); }
public  int getColumnIndex(java.lang.String key) { throw new RuntimeException("Stub!"); }
public  void bind(int index, double value) { throw new RuntimeException("Stub!"); }
public  void bind(int index, float value) { throw new RuntimeException("Stub!"); }
public  void bind(int index, long value) { throw new RuntimeException("Stub!"); }
public  void bind(int index, int value) { throw new RuntimeException("Stub!"); }
public  void bind(int index, boolean value) { throw new RuntimeException("Stub!"); }
public  void bindNull(int index) { throw new RuntimeException("Stub!"); }
public  void bind(int index, byte[] value) { throw new RuntimeException("Stub!"); }
public  void bind(int index, java.lang.String value) { throw new RuntimeException("Stub!"); }
public  long insert(android.content.ContentValues values) { throw new RuntimeException("Stub!"); }
public  long execute() { throw new RuntimeException("Stub!"); }
public  void prepareForInsert() { throw new RuntimeException("Stub!"); }
public  void prepareForReplace() { throw new RuntimeException("Stub!"); }
public  long replace(android.content.ContentValues values) { throw new RuntimeException("Stub!"); }
public  void close() { throw new RuntimeException("Stub!"); }
public static final int TABLE_INFO_PRAGMA_DEFAULT_INDEX = 4;
}
public  DatabaseUtils() { throw new RuntimeException("Stub!"); }
public static final  void writeExceptionToParcel(android.os.Parcel reply, java.lang.Exception e) { throw new RuntimeException("Stub!"); }
public static final  void readExceptionFromParcel(android.os.Parcel reply) { throw new RuntimeException("Stub!"); }
public static  void readExceptionWithFileNotFoundExceptionFromParcel(android.os.Parcel reply) throws java.io.FileNotFoundException { throw new RuntimeException("Stub!"); }
public static  void readExceptionWithOperationApplicationExceptionFromParcel(android.os.Parcel reply) throws android.content.OperationApplicationException { throw new RuntimeException("Stub!"); }
public static  void bindObjectToProgram(android.database.sqlite.SQLiteProgram prog, int index, java.lang.Object value) { throw new RuntimeException("Stub!"); }
public static  void appendEscapedSQLString(java.lang.StringBuilder sb, java.lang.String sqlString) { throw new RuntimeException("Stub!"); }
public static  java.lang.String sqlEscapeString(java.lang.String value) { throw new RuntimeException("Stub!"); }
public static final  void appendValueToSql(java.lang.StringBuilder sql, java.lang.Object value) { throw new RuntimeException("Stub!"); }
public static  java.lang.String concatenateWhere(java.lang.String a, java.lang.String b) { throw new RuntimeException("Stub!"); }
public static  java.lang.String getCollationKey(java.lang.String name) { throw new RuntimeException("Stub!"); }
public static  java.lang.String getHexCollationKey(java.lang.String name) { throw new RuntimeException("Stub!"); }
public static  void dumpCursor(android.database.Cursor cursor) { throw new RuntimeException("Stub!"); }
public static  void dumpCursor(android.database.Cursor cursor, java.io.PrintStream stream) { throw new RuntimeException("Stub!"); }
public static  void dumpCursor(android.database.Cursor cursor, java.lang.StringBuilder sb) { throw new RuntimeException("Stub!"); }
public static  java.lang.String dumpCursorToString(android.database.Cursor cursor) { throw new RuntimeException("Stub!"); }
public static  void dumpCurrentRow(android.database.Cursor cursor) { throw new RuntimeException("Stub!"); }
public static  void dumpCurrentRow(android.database.Cursor cursor, java.io.PrintStream stream) { throw new RuntimeException("Stub!"); }
public static  void dumpCurrentRow(android.database.Cursor cursor, java.lang.StringBuilder sb) { throw new RuntimeException("Stub!"); }
public static  java.lang.String dumpCurrentRowToString(android.database.Cursor cursor) { throw new RuntimeException("Stub!"); }
public static  void cursorStringToContentValues(android.database.Cursor cursor, java.lang.String field, android.content.ContentValues values) { throw new RuntimeException("Stub!"); }
public static  void cursorStringToInsertHelper(android.database.Cursor cursor, java.lang.String field, android.database.DatabaseUtils.InsertHelper inserter, int index) { throw new RuntimeException("Stub!"); }
public static  void cursorStringToContentValues(android.database.Cursor cursor, java.lang.String field, android.content.ContentValues values, java.lang.String key) { throw new RuntimeException("Stub!"); }
public static  void cursorIntToContentValues(android.database.Cursor cursor, java.lang.String field, android.content.ContentValues values) { throw new RuntimeException("Stub!"); }
public static  void cursorIntToContentValues(android.database.Cursor cursor, java.lang.String field, android.content.ContentValues values, java.lang.String key) { throw new RuntimeException("Stub!"); }
public static  void cursorLongToContentValues(android.database.Cursor cursor, java.lang.String field, android.content.ContentValues values) { throw new RuntimeException("Stub!"); }
public static  void cursorLongToContentValues(android.database.Cursor cursor, java.lang.String field, android.content.ContentValues values, java.lang.String key) { throw new RuntimeException("Stub!"); }
public static  void cursorDoubleToCursorValues(android.database.Cursor cursor, java.lang.String field, android.content.ContentValues values) { throw new RuntimeException("Stub!"); }
public static  void cursorDoubleToContentValues(android.database.Cursor cursor, java.lang.String field, android.content.ContentValues values, java.lang.String key) { throw new RuntimeException("Stub!"); }
public static  void cursorRowToContentValues(android.database.Cursor cursor, android.content.ContentValues values) { throw new RuntimeException("Stub!"); }
public static  long queryNumEntries(android.database.sqlite.SQLiteDatabase db, java.lang.String table) { throw new RuntimeException("Stub!"); }
public static  long queryNumEntries(android.database.sqlite.SQLiteDatabase db, java.lang.String table, java.lang.String selection) { throw new RuntimeException("Stub!"); }
public static  long queryNumEntries(android.database.sqlite.SQLiteDatabase db, java.lang.String table, java.lang.String selection, java.lang.String[] selectionArgs) { throw new RuntimeException("Stub!"); }
public static  long longForQuery(android.database.sqlite.SQLiteDatabase db, java.lang.String query, java.lang.String[] selectionArgs) { throw new RuntimeException("Stub!"); }
public static  long longForQuery(android.database.sqlite.SQLiteStatement prog, java.lang.String[] selectionArgs) { throw new RuntimeException("Stub!"); }
public static  java.lang.String stringForQuery(android.database.sqlite.SQLiteDatabase db, java.lang.String query, java.lang.String[] selectionArgs) { throw new RuntimeException("Stub!"); }
public static  java.lang.String stringForQuery(android.database.sqlite.SQLiteStatement prog, java.lang.String[] selectionArgs) { throw new RuntimeException("Stub!"); }
public static  android.os.ParcelFileDescriptor blobFileDescriptorForQuery(android.database.sqlite.SQLiteDatabase db, java.lang.String query, java.lang.String[] selectionArgs) { throw new RuntimeException("Stub!"); }
public static  android.os.ParcelFileDescriptor blobFileDescriptorForQuery(android.database.sqlite.SQLiteStatement prog, java.lang.String[] selectionArgs) { throw new RuntimeException("Stub!"); }
public static  void cursorStringToContentValuesIfPresent(android.database.Cursor cursor, android.content.ContentValues values, java.lang.String column) { throw new RuntimeException("Stub!"); }
public static  void cursorLongToContentValuesIfPresent(android.database.Cursor cursor, android.content.ContentValues values, java.lang.String column) { throw new RuntimeException("Stub!"); }
public static  void cursorShortToContentValuesIfPresent(android.database.Cursor cursor, android.content.ContentValues values, java.lang.String column) { throw new RuntimeException("Stub!"); }
public static  void cursorIntToContentValuesIfPresent(android.database.Cursor cursor, android.content.ContentValues values, java.lang.String column) { throw new RuntimeException("Stub!"); }
public static  void cursorFloatToContentValuesIfPresent(android.database.Cursor cursor, android.content.ContentValues values, java.lang.String column) { throw new RuntimeException("Stub!"); }
public static  void cursorDoubleToContentValuesIfPresent(android.database.Cursor cursor, android.content.ContentValues values, java.lang.String column) { throw new RuntimeException("Stub!"); }
public static  void createDbFromSqlStatements(android.content.Context context, java.lang.String dbName, int dbVersion, java.lang.String sqlStatements) { throw new RuntimeException("Stub!"); }
public static  int getSqlStatementType(java.lang.String sql) { throw new RuntimeException("Stub!"); }
public static  java.lang.String[] appendSelectionArgs(java.lang.String[] originalValues, java.lang.String[] newValues) { throw new RuntimeException("Stub!"); }
public static final int STATEMENT_SELECT = 1;
public static final int STATEMENT_UPDATE = 2;
public static final int STATEMENT_ATTACH = 3;
public static final int STATEMENT_BEGIN = 4;
public static final int STATEMENT_COMMIT = 5;
public static final int STATEMENT_ABORT = 6;
public static final int STATEMENT_PRAGMA = 7;
public static final int STATEMENT_DDL = 8;
public static final int STATEMENT_UNPREPARED = 9;
public static final int STATEMENT_OTHER = 99;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy