0

I ran into an issue when application does not perform any INSER on SQLITE. The answer was here.

The question is: What Memo table is?

db.execSQL(Create table Memo (ID INTEGER PRIMARY KEY AUTOINCREMENT, sym TEXT, cmp TEXT, cng TEXT);

Does any one know?

Community
  • 1
  • 1
Anton
  • 1,001
  • 9
  • 23
  • 1
    some table named "Memo" with columns "ID", "sym", "cmp", cng" - you also need `"` around the SQLite statement like in `db.execSQL("CREATE TABLE ... ");` The answer on the other question says that you need to create a table in your database before you can insert into it. – zapl Apr 19 '12 at 22:16
  • the question was what kind of table that is? It seems to be some kind of service table in Sqlite. – Anton May 04 '12 at 08:11
  • Isn't that a table *you* create? I have no idea where that table would be and what it is for. – zapl May 04 '12 at 09:13

0 Answers0