Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I get such stack trace:

android.database.sqlite.SQLiteException: no such table: someTa???: , while compiling: SELECT COUNT(*) FROM someTa??? WHERE a = ? AND b = ?
    at android.database.sqlite.SQLiteCompiledSql.native_compile(Native Method)
    at android.database.sqlite.SQLiteCompiledSql.compile(SQLiteCompiledSql.java:91)
    at android.database.sqlite.SQLiteCompiledSql.<init>(SQLiteCompiledSql.java:64)
    at android.database.sqlite.SQLiteProgram.<init>(SQLiteProgram.java:80)
    at android.database.sqlite.SQLiteQuery.<init>(SQLiteQuery.java:46)
    at android.database.sqlite.SQLiteDirectCursorDriver.query(SQLiteDirectCursorDriver.java:42)
    at android.database.sqlite.SQLiteDatabase.rawQueryWithFactory(SQLiteDatabase.java:1345)
    at android.database.sqlite.SQLiteDatabase.rawQuery(SQLiteDatabase.java:1315)

Notice that the SQL is corruped, instead of someTable I see someTa???, where ? stands for char 0x1A. This happens only sometimes (very rare).

I create SQL query string using StringBuilder and String.format.

The question is who is corrupting memory? Is this Android runtime, or SQLite? May be this is a known bug?

share|improve this question
as 0x1A is ctrl+z I would like to know if you use special characters as your table name?! (you came from russia, right?) – WarrenFaith Oct 20 '10 at 0:13
The table names are in english. Also, the generated SQL is 100% correct, since I generate the same sql each time (basically, it could be replaced with constant string). – alex2k8 Oct 20 '10 at 0:27
Try replacing it with a constant string, then. Or, add some logging to write out your SQL before calling rawQuery(), to try to answer your question. – CommonsWare Oct 20 '10 at 1:01
Actually I don't want to replace it with constant string (it makes my life simpler). Also, this happens only on user devices, and very, very rare. – alex2k8 Oct 20 '10 at 1:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.