2

我在“资产”文件夹下有一个内部 SQLite 数据库,其中存储了 100 个用户名和相应的密码,我如何通过 phoneGap 访问它?
我读过了

4

2 回答 2

2
/**
 * Creates / Opens a connection to DB
 */
DB.openDB = function() {
    try {
        if (!window.openDatabase) {
            //alert('Cannot open database!');
        } else {
            var shortName = 'db_name';
            var version = '1.0';
            var displayName = 'DBNAME';
            var maxSize = (DEVICE_TYPE == DEVICE_ANDROID || DEVICE_TYPE == DEVICE_ANDROID_TAB) ? 5242880 : 1000000; ////819200; //65536; // in bytes // increased to support Android//163840; // 
            this.vocabDB = window.openDatabase(shortName, version, displayName, maxSize, this.DBCreated);
            this.DBSupported = true;
        }
    } catch(e) {
        //console.log("DB Error handling code goes here.");
        //console.log(e);
        return;
    }
}
于 2012-04-30T05:09:30.203 回答
1

好吧,您可以对 assets 文件夹中的数据库执行 window.openDatabase()。您需要将其复制到正确的位置,以便 WebView 加载它。看看这个:

http://gauravstomar.blogspot.ca/2011/08/prepopulate-sqlite-in-phonegap.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+GauravSTomarBootstrappingIntelligence+(Gaurav+S+Tomar+:+Bootstrapping+Intelligence )

发布为 Gaurav 为您提供了在 Android 和 iOS 上执行此操作的代码。

于 2012-04-30T01:33:00.737 回答