Best unofficial Apache Server developers community |
|
I am getting an error with a rawquery on Eclipse on a DB in the assets directory. The DB is 'pre-loaded' with tables and data and the SQL string, first comment line, works in SQLite DB browser. When I copy the SQL string to code and modify to remove quotes it errors. The code below is from the 'standard' public class DataBaseHelper extends SQLiteOpenHelper{ .I am new to android/java and would appreciate any assistance or suggestions.
posted via StackOverflow
|
|
 
|
Looks like you have to put double quotes around your object names. So you'll want to do this:
Note the double quotes preceded by the escape character '\' |