diff options
| author | Vasu Nori <vnori@google.com> | 2010-02-09 11:49:01 -0800 |
|---|---|---|
| committer | Vasu Nori <vnori@google.com> | 2010-02-09 11:49:01 -0800 |
| commit | 82f82be4b3f97cd8a1fd298d8389f5dc54fea01d (patch) | |
| tree | 06c65a1cca1fbb4b1a976504288dc90a8f72a5a7 /core/java/android/database/sqlite | |
| parent | 0066b084b9ac10842769b3cbf755482560d21cd8 (diff) | |
change wording in warning msg printed when compiled-sql cache is full
Diffstat (limited to 'core/java/android/database/sqlite')
| -rw-r--r-- | core/java/android/database/sqlite/SQLiteDatabase.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/java/android/database/sqlite/SQLiteDatabase.java b/core/java/android/database/sqlite/SQLiteDatabase.java index 540f4445ba12..5d1e7cf1c884 100644 --- a/core/java/android/database/sqlite/SQLiteDatabase.java +++ b/core/java/android/database/sqlite/SQLiteDatabase.java @@ -1880,8 +1880,7 @@ public class SQLiteDatabase extends SQLiteClosable { */ Log.w(TAG, "Reached MAX size for compiled-sql statement cache for database " + getPath() + "; i.e., NO space for this sql statement in cache: " + - sql + ". Make sure your sql " + - "statements are using prepared-sql-statement syntax with '?' for " + + sql + ". Please change your sql statements to use '?' for " + "bindargs, instead of using actual values"); /* increment the number of times this warnings has been printed. |
