
SQLITE
Get flash to fully experience Pearltrees
Most of the Android database examples you will find on the web will usually contain only one table to demonstrate the basic database concepts. That's great, the only problem with this is that most non-trivial database implementations will contain more than one table. The standard database creation string for a single table will probably look a lot like the below: private static final String CREATE_TABLE_1 = " create table " + table1 + " (_id integer primary key autoincrement," + " title text not null, body text not null);";
Creating multiple sqlite database tables in Android
Ver blog tiene cosas muy interesantes by Feb 21

