Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update a couple of java source files to more closely match their Android counterparts. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
20bdb663b07ca4122a55ee7ba8f19d48 |
User & Date: | dan 2017-11-28 08:22:02.397 |
Context
2017-11-28
| ||
15:46 | Update further java classfiles to match the latest Android code. (check-in: e782e01fbe user: dan tags: trunk) | |
08:22 | Update a couple of java source files to more closely match their Android counterparts. (check-in: 20bdb663b0 user: dan tags: trunk) | |
2017-11-27
| ||
20:59 | Update some C++ files to match recent changes to the Android core. (check-in: dec1c9374f user: dan tags: trunk) | |
Changes
Changes to sqlite3/src/main/java/org/sqlite/database/DatabaseErrorHandler.java.
︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 | * See the License for the specific language governing permissions and * limitations under the License. */ /* ** Modified to support SQLite extensions by the SQLite developers: ** sqlite-dev@sqlite.org. */ package org.sqlite.database; import org.sqlite.database.sqlite.SQLiteDatabase; /** | > < | | | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | * See the License for the specific language governing permissions and * limitations under the License. */ /* ** Modified to support SQLite extensions by the SQLite developers: ** sqlite-dev@sqlite.org. */ package org.sqlite.database; import org.sqlite.database.sqlite.SQLiteDatabase; /** * An interface to let apps define an action to take when database corruption is detected. */ public interface DatabaseErrorHandler { /** * The method invoked when database corruption is detected. * @param dbObj the {@link SQLiteDatabase} object representing the database on which corruption * is detected. */ void onCorruption(SQLiteDatabase dbObj); } |
Changes to sqlite3/src/main/java/org/sqlite/database/DefaultDatabaseErrorHandler.java.
︙ | ︙ | |||
25 26 27 28 29 30 31 | import org.sqlite.database.sqlite.SQLiteDatabase; import org.sqlite.database.sqlite.SQLiteException; import android.util.Log; import android.util.Pair; /** | | | | | | | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | import org.sqlite.database.sqlite.SQLiteDatabase; import org.sqlite.database.sqlite.SQLiteException; import android.util.Log; import android.util.Pair; /** * Default class used to define the action to take when database corruption is reported * by sqlite. * <p> * An application can specify an implementation of {@link DatabaseErrorHandler} on the * following: * <ul> * <li>{@link SQLiteDatabase#openOrCreateDatabase(String, * android.database.sqlite.SQLiteDatabase.CursorFactory, DatabaseErrorHandler)}</li> * <li>{@link SQLiteDatabase#openDatabase(String, * android.database.sqlite.SQLiteDatabase.CursorFactory, int, DatabaseErrorHandler)}</li> * </ul> * The specified {@link DatabaseErrorHandler} is used to handle database corruption errors, if they * occur. * <p> * If null is specified for the DatabaseErrorHandler param in the above calls, this class is used * as the default {@link DatabaseErrorHandler}. */ public final class DefaultDatabaseErrorHandler implements DatabaseErrorHandler { private static final String TAG = "DefaultDatabaseErrorHandler"; /** * defines the default method to be invoked when database corruption is detected. * @param dbObj the {@link SQLiteDatabase} object representing the database on which corruption * is detected. */ public void onCorruption(SQLiteDatabase dbObj) { Log.e(TAG, "Corruption reported by sqlite on database: " + dbObj.getPath()); // If this is a SEE build, do not delete any database files. // It may be that the user has specified an incorrect password. if( SQLiteDatabase.hasCodec() ) return; // is the corruption detected even before database could be 'opened'? if (!dbObj.isOpen()) { // database files are not even openable. delete this database file. // NOTE if the database has attached databases, then any of them could be corrupt. // and not deleting all of them could cause corrupted database file to remain and |
︙ | ︙ |