add dbhelper
This commit is contained in:
parent
a9b3ea9e5d
commit
0f9001c88f
58
src/org/fox/ttrss/DatabaseHelper.java
Normal file
58
src/org/fox/ttrss/DatabaseHelper.java
Normal file
@ -0,0 +1,58 @@
|
||||
package org.fox.ttrss;
|
||||
import android.content.Context;
|
||||
import android.database.sqlite.SQLiteDatabase;
|
||||
import android.database.sqlite.SQLiteOpenHelper;
|
||||
import android.provider.BaseColumns;
|
||||
|
||||
|
||||
public class DatabaseHelper extends SQLiteOpenHelper {
|
||||
|
||||
private final String TAG = this.getClass().getSimpleName();
|
||||
public static final String DATABASE_NAME = "OfflineStorage";
|
||||
public static final int DATABASE_VERSION = 1;
|
||||
|
||||
public DatabaseHelper(Context context) {
|
||||
super(context, DATABASE_NAME, null, DATABASE_VERSION);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCreate(SQLiteDatabase db) {
|
||||
db.execSQL("DROP TABLE IF EXISTS feeds;");
|
||||
db.execSQL("DROP TABLE IF EXISTS articles;");
|
||||
db.execSQL("DROP VIEW IF EXISTS feeds_unread;");
|
||||
|
||||
db.execSQL("CREATE TABLE IF NOT EXISTS feeds (" +
|
||||
BaseColumns._ID + " INTEGER PRIMARY KEY AUTOINCREMENT," +
|
||||
"feed_url TEXT, " +
|
||||
"title TEXT, " +
|
||||
"has_icon BOOLEAN, " +
|
||||
"cat_id INTEGER, " +
|
||||
");");
|
||||
|
||||
db.execSQL("CREATE TABLE IF NOT EXISTS articles (" +
|
||||
BaseColumns._ID + " INTEGER PRIMARY KEY AUTOINCREMENT," +
|
||||
"unread BOOLEAN, " +
|
||||
"marked BOOLEAN, " +
|
||||
"published BOOLEAN, " +
|
||||
"updated INTEGER, " +
|
||||
"is_updated BOOLEAN, " +
|
||||
"title TEXT, " +
|
||||
"link TEXT, " +
|
||||
"feed_id INTEGER, " +
|
||||
"tags TEXT, " +
|
||||
"content TEXT, " +
|
||||
");");
|
||||
|
||||
db.execSQL("CREATE VIEW feeds_unread AS SELECT feeds."+BaseColumns._ID+" AS "+BaseColumns._ID+", " +
|
||||
"feeds.title AS title, " +
|
||||
"SUM(articles.unread) AS unread FROM feeds " +
|
||||
"LEFT JOIN articles ON (articles.feed_id = feeds."+BaseColumns._ID+") " +
|
||||
"GROUP BY feeds."+BaseColumns._ID+", feeds.title;");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
|
||||
onCreate(db);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user