Vova K.
Vova K.

Reputation: 688

android.database.sqlite.SQLiteException: no such column: ۱۵۳۶۱۹۸۶۸۴۰۰۸۵۴۲۵۴۱

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

Answers (1)

CL.
CL.

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

Related Questions