SQL Syntax Error Android - android

I am getting an SQL syntax error but I'm not quite sure why. This is the error code I am obtaining;
android.database.sqlite.SQLiteException: near "GCSE": syntax error (code 1): , while compiling: SELECT foreign_word,english_meaning,correct FROM vocab_words WHERE name = AQA GCSE Spanish Higher
Any suggestions to fix this - I don't know what the error is?

when the column's data type is string, its value should be wrapped with single quote.
SELECT foreign_word,english_meaning,correct
FROM vocab_words
WHERE name = 'AQA GCSE Spanish Higher'

Related

Syntax Error using Vacuum Into on Android

I'm trying to make a backup of a database in an Android application, and I was pointed to the VACUUM INTO query. However, when I try to call it, I get a syntax error around "INTO":
Caused by: android.database.sqlite.SQLiteException: near "INTO": syntax error (code 1 SQLITE_ERROR): , while compiling: VACUUM INTO 'Test'
The String itself:
String query = "VACUUM INTO 'Test'";
I've tried using double quotes, single quotes, different path names, .db, no file type, including and excluding the database name - always the same error.
Is INTO not supported on Android's implementation of SQLite?

"WITH" clause Query not working in android

this is my rawQuery
WITH authorRating(aname, rating) AS SELECT aname, AVG(quantity) FROM book GROUP BY aname
error is in Logcate
android.database.sqlite.SQLiteException: near "WITH": syntax error (code 1):
WITH is supported since SQLite 3.8.3, and that is not shipped with all Android versions.
Anyway, this query is not a valid WITH clause, and lacks the actual query.

escape/replace apostrophe is not working

I am using the following line
memo = etMemo.getText().toString().replace("'", "\'");
because apostrophes are causing errors in my app. Even doing this replace though, I am still receiving an error.
android.database.sqlite.SQLiteException: near "s": syntax error (code 1): , while compiling: INSERT INTO [Trst](credit, memo, timestamp) VALUES ('10.0', 'Test's', '07/29/2014')
Does anyone know why this wouldnt be working properly?
Try
memo = etMemo.getText().toString().replace("'", "\'\'"); // one apostrophe -> two apostrophes

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?
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.

sqlite query runtime error

I was working with sqlite but I end up with this error.I'm not getting what is error here.
Below is my logcat.
android.database.sqlite.SQLiteException: near "/": syntax error: , while compiling:
SELECT start,end FROM crop_list WHERE name =/sdcard/Shri Ramachandra kripalu bhajamana.mp3
I think your problem is you forget to add the quotes marks (' ') like:
SELECT start,end FROM crop_list WHERE name ='/sdcard/Shri Ramachandra kripalu bhajamana.mp3'.
why do you not use class helper and Helper.dabase.query(.....) <- it is faster ;) around 2 segons faster that helper.dabase.rawquery ;)
SQLiteOpenHelper | Android Developers <-- best practice

Categories

Resources