summaryrefslogtreecommitdiff
path: root/core/java/android/database/sqlite/SQLiteProgram.java
AgeCommit message (Expand)Author
2020-10-27Add maxTargetSdk restriction to unused APIs.Mathew Inwood
2020-01-06Use new UnsupportedAppUsage annotation.Artur Satayev
2018-08-10Add @UnsupportedAppUsage annotationsMathew Inwood
2012-05-07Move CancellationSignal to android.os package.Jeff Brown
2012-03-12Fix potential NPE in SQLiteProgram.Jeff Brown
2012-03-06Don't close the database until all references released.Jeff Brown
2012-02-02Rename CancellationSignal using preferred spelling.Jeff Brown
2012-01-27Implement a cancelation mechanism for queries.Jeff Brown
2012-01-12Rewrite SQLite database wrappers.Jeff Brown
2011-12-16Make SQLiteQuery and SQLiteProgram final.Jeff Brown
2011-03-21bug:4090903 allow bindargs on attach database statementVasu Nori
2011-02-10Adopt LRU cache in SQLite.Jesse Wilson
2010-09-28SQLiteDatabase: fix inconsistent lockingVasu Nori
2010-09-27fix this: closing database twice fails with IllegalStateExceptionVasu Nori
2010-09-17don't compile statement for certain SQL statementsVasu Nori
2010-09-14Revert "caching code retooled to reduce locking + handle SMP"Vasu Nori
2010-09-13caching code retooled to reduce locking + handle SMPVasu Nori
2010-09-10remove unnecessary synchronization object from SQLiteClosable.Vasu Nori
2010-09-07remove some useless code and add some code to aid in debuggingVasu Nori
2010-09-07android change to handle Change-Id: Idbeed81b5b7349059e467b33a8641abf0b4aaeffVasu Nori
2010-08-23SQLiteOpenHelper should discard closed singleton database objectsVasu Nori
2010-08-03random but useful stuffVasu Nori
2010-08-02do begin-end transaction before standalone insert/update/delete sqlVasu Nori
2010-07-09reduce locking when using SQLiteStatementVasu Nori
2010-07-08reduce java locking on SQLiteDatabase if sql is already compiledVasu Nori
2010-07-07for WAL to work, can't keep prepared SQL stmt_id in SQLiteStatementVasu Nori
2010-07-03deprecate method returning prepared sql statement idVasu Nori
2010-07-02some refactoring and multi-threading fixesVasu Nori
2010-06-03cleanup some small but ugly things. all minor things.Vasu Nori
2010-05-20close() on anything other than database shouldn't acquire db lock.Vasu Nori
2010-05-13am fd5b040a: am 485b800e: am 1a3b3d48: merge from open-source masterThe Android Open Source Project
2010-05-13merge from open-source masterThe Android Open Source Project
2010-05-12Add some documentation about the thread safety of Cursor and some of the SQLi...Jeff Hamilton
2010-04-23fix a bug introduced when prepared-statement cache was made LRU-basedVasu Nori
2010-04-16accept close() on database objects even if the database is closedVasu Nori
2010-04-13verify database state before calling sqlite. Bug:2593970Vasu Nori
2010-03-11debug-flag covered log messages to help people debug finalizer stuffVasu Nori
2010-03-09add REPLACE to the list of cached sql stmntsVasu Nori
2010-03-08caching bug in SQLiteDatabase causes invalid finalizer warningsVasu Nori
2010-03-02add warning in finalizer. deprecate protected members.Vasu Nori
2010-02-26in finalize() methods, log warnings if db lock is going to be held.Vasu Nori
2010-02-24yet another race condition fix to address bug:2456970Vasu Nori
2010-02-22fix race condition introduced by CL https://android-git.corp.google.com/g/40395Vasu Nori
2010-02-18bug fix for 2419869. also included 2 unittests.Vasu Nori
2010-02-08changes after review by API councilVasu Nori
2010-02-08use sqlite 3.6.22 to print and profile the sql statetementsVasu Nori
2010-02-01add instrumentation to log the sql statement + bindargs + databasenameVasu Nori
2010-01-14fix a bug in compiled-sql caching & hide public api setMaxSqlCacheSizeVasu Nori
2009-12-07Revert "dealloc compiled-sql statements before deref'ing them from SQLiteData...Vasu Nori
2009-12-03dealloc compiled-sql statements before deref'ing them from SQLiteDatabase obj.Vasu Nori