Reputation: 688
all.
I've found in bugsense for Android application this exeception:
android.database.sqlite.SQLiteException: no such column: ۱۵۳۶۱۹۸۶۸۴۰۰۸۵۴۲۵۴۱ (code 1): , while compiling:
SELECT * FROM by_istin_android_xcore_source_DataSourceRequestEntity WHERE (_id = -۱۵۳۶۱۹۸۶۸۴۰۰
Seems like try to select with filter by arabic number.
Someone see it before?
Upvotes: 0
Views: 470
Reputation: 180270
If _id
is a numeric column, you must change your code to generate numbers with ASCII digits.
If _id
contains strings, you must change your code to 'quote' the string.
Upvotes: 2