File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
de.vogella.android.sqlite.first/src/de/vogella/android/sqlite/first
de.vogella.android.todos/src/de/vogella/android/todos/database Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ public class MySQLiteHelper extends SQLiteOpenHelper {
1111 public static final String COLUMN_ID = "_id" ;
1212 public static final String COLUMN_COMMENT = "comment" ;
1313
14- private static final String DATABASE_NAME = "applicationdata " ;
14+ private static final String DATABASE_NAME = "commments.db " ;
1515 private static final int DATABASE_VERSION = 1 ;
1616
1717 // Database creation sql statement
Original file line number Diff line number Diff line change 66
77public class TodoDatabaseHelper extends SQLiteOpenHelper {
88
9- private static final String DATABASE_NAME = "todotable" ;
9+ private static final String DATABASE_NAME = "todotable.db " ;
1010 private static final int DATABASE_VERSION = 1 ;
1111
1212 public TodoDatabaseHelper (Context context ) {
You can’t perform that action at this time.
0 commit comments