Definition at line 17 of file HistoryDB.java.
◆ HistoryDB()
com.freerdp.freerdpcore.services.HistoryDB.HistoryDB |
( |
Context |
context | ) |
|
|
inline |
Definition at line 26 of file HistoryDB.java.
27 {
28 super(context, DB_NAME, null, DB_VERSION);
29 }
◆ onCreate()
void com.freerdp.freerdpcore.services.HistoryDB.onCreate |
( |
SQLiteDatabase |
db | ) |
|
|
inline |
Definition at line 31 of file HistoryDB.java.
32 {
33
34 String sqlQuickConnectHistory = "CREATE TABLE " + QUICK_CONNECT_TABLE_NAME + " (" +
35 QUICK_CONNECT_TABLE_COL_ITEM + " TEXT PRIMARY KEY, " +
36 QUICK_CONNECT_TABLE_COL_TIMESTAMP + " INTEGER"
37 + ");";
38
39 db.execSQL(sqlQuickConnectHistory);
40 }
◆ onUpgrade()
void com.freerdp.freerdpcore.services.HistoryDB.onUpgrade |
( |
SQLiteDatabase |
db, |
|
|
int |
oldVersion, |
|
|
int |
newVersion |
|
) |
| |
|
inline |
◆ QUICK_CONNECT_TABLE_COL_ITEM
final String com.freerdp.freerdpcore.services.HistoryDB.QUICK_CONNECT_TABLE_COL_ITEM = "item" |
|
static |
◆ QUICK_CONNECT_TABLE_COL_TIMESTAMP
final String com.freerdp.freerdpcore.services.HistoryDB.QUICK_CONNECT_TABLE_COL_TIMESTAMP = "timestamp" |
|
static |
◆ QUICK_CONNECT_TABLE_NAME
final String com.freerdp.freerdpcore.services.HistoryDB.QUICK_CONNECT_TABLE_NAME = "quick_connect_history" |
|
static |
The documentation for this class was generated from the following file: