我有一个SQL文件,我想在我的HTML中使用 - 我如何在我的项目中使用它?。
我将使用phonegap部署我的html以在手机中使用。
我不必在手机中使用本地sql文件,如何在本地获取信息?
(如select * from from person
)
答案 0 :(得分: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);