Added Methods
|
void createDbFromSqlStatements(Context, String, int, String)
|
Creates a db and populates it with the sql statements in sqlStatements. |
void cursorStringToInsertHelper(Cursor, String, InsertHelper, int)
|
Reads a String out of a field in a Cursor and writes it to an InsertHelper. |
String dumpCurrentRowToString(Cursor )
|
Dump the contents of a Cursor's current row to a String. |
String getCollationKey(String )
|
return the collation key
|
String getHexCollationKey(String )
|
return the collation key in hex format
|
long longForQuery(SQLiteStatement, String[])
|
Utility method to run the pre-compiled query and return the value in the
first column of the first row. |
void readExceptionFromParcel(Parcel )
|
Special function for reading an exception result from the header of
a parcel, to be used after receiving the result of a transaction. |
void readExceptionWithFileNotFoundExceptionFromParcel(Parcel )
|
|
String sqlEscapeString(String )
|
SQL-escape a string. |
String stringForQuery(SQLiteDatabase, String, String[])
|
Utility method to run the query on the db and return the value in the
first column of the first row. |
String stringForQuery(SQLiteStatement, String[])
|
Utility method to run the pre-compiled query and return the value in the
first column of the first row. |
void writeExceptionToParcel(Parcel, Exception)
|
Special function for writing an exception result at the header of
a parcel, to be used when returning an exception from a transaction. |