0

我有一个 SQL 文件,我想在我的 HTML 中使用它——如何在我的项目中使用它?

我将使用 phonegap 部署我的 html 以在手机中使用。

手机本地不用sql文件,本地怎么获取信息?

(喜欢select * from from person

4

1 回答 1

1

查看存储部分的文档http://docs.phonegap.com/en/3.0.0/cordova_storage_storage.md.html#Storage

我想最简单的解决方案是将 SQL 直接嵌入到 JS 中(如果它只有少量),就像文档中的这个示例一样:

function populateDB(tx) {
    tx.executeSql('DROP TABLE IF EXISTS DEMO');

    //replace these lines with your table schema and starting data
    tx.executeSql('CREATE TABLE IF NOT EXISTS DEMO (id unique, data)');
    tx.executeSql('INSERT INTO DEMO (id, data) VALUES (1, "First row")');
    tx.executeSql('INSERT INTO DEMO (id, data) VALUES (2, "Second row")');
}

function errorCB(err) {
    alert("Error processing SQL: "+err.code);
}

function successCB() {
    alert("success!");
}

//this needs to be called after the phonegap event onDeviceReady() has been called
var db = window.openDatabase("Database", "1.0", "Cordova Demo", 200000);
db.transaction(populateDB, errorCB, successCB);
于 2013-08-29T09:23:38.017 回答