總網頁瀏覽量

關於我自己

我的相片
人生的必修課是接受無常,人生的選修課是放下執著。

2012年3月12日 星期一

SQLiteOpenHelper ~ 旅遊匯率隨時查(五)

-更新-




======================SQLite======================
String tables[] = {"table_value", "table_listview_exchange", "table_exchangerate", "table_listview_shopping"};

String fieldNames[][] =
{
        { "fieldname_date", "fieldname_country", "fieldname_cash"},
        { "fieldname_id", "fn_exchange_country", "fn_exchange_cash", "fn_exchange_unit"},
        { "fn_country1_exchangerate",
          "fn_country2_exchangerate",
          "fn_country3_exchangerate",
          "fn_country4_exchangerate",
          "fn_country5_exchangerate"},
        { "fieldname_id", "fn_shopping_icon", "fn_shopping_item", "fn_shopping_nt"}
};
   
String fieldTypes[][] =
{
        { "text", "text", "text"},
        { "INTEGER PRIMARY KEY AUTOINCREMENT", "text", "text", "text"},
        { "text", "text", "text", "text", "text"},
        { "INTEGER PRIMARY KEY AUTOINCREMENT", "text", "text", "text"}
};
   
int version = 1;
   
private SQLiteOpenHelper_ExchangeRate dbHelper = new SQLiteOpenHelper_ExchangeRate
(
            this,
            "SQLite_ExchangeRate2.db",
            null,
            version,   
            tables,
            fieldNames,
            fieldTypes
);

沒有留言:

張貼留言