私はphonegapでSQLiteデータベースを開きます。 これは私のjavascriptのコードです:PhonegapデスクトップでSQLiteを使用する
var myDB = null;
function onDeviceReady()
{
myDB = window.openDatabase("test", "1.0", "Test DB", 1000000);
//myDB = window.sqlitePlugin.openDatabase({name: 'test.db', location: 'default'});
alert("yal");
myDB.transaction(PopulateDatabase,errorDB,successDB);
myDB.transaction(queryDB, errorCB, querySuccess);
}
function PopulateDatabase(tx)
{
tx.executeSql('DROP TABLE IF EXISTS DEMO');
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 errorDB(error)
{
alert("Error on Database creation : " + error);
}
function successDB()
{
alert("Database is created successfully");
}
function queryDB(tx) {
tx.executeSql('SELECT * FROM DEMO', [], querySuccess, errorCB);
}
function querySuccess(tx, results) {
var len = results.rows.length;
alert("DEMO table: " + len + " rows found.");
for (var i=0; i<len; i++){
alert("Row = " + i + " ID = " + results.rows.item(i).id + " Data = " + results.rows.item(i).data);
}
alert("success");
}
function errorCB(err) {
alert("Error processing SQL: "+err.code);
}
これは仕事だと私は私のデータベースからデータを取得することができます。 私の問題は、自分のコンピュータ上のデータベースが見つかりません。 誰かが私にそれを見つけられると教えてもらえますか?
私はこれを試しましたが、それは私のためには機能しません。
myDB = window.sqlitePlugin.openDatabase({name: 'test.db', location: 'default'});
私はcordova-sqlite-storageプラグインを使用しています。
これは、プロジェクトの私のconfig.xmlファイルである:
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.phonegap.helloworld" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name>yal</name>
<description>
A blank PhoneGap app.
</description>
<author email="[email protected]" href="http://phonegap.com">
PhoneGap Team
</author>
<content src="index.html" />
<access origin="*" />
<plugin name="cordova-sqlite-ext" spec="~0.10.2" />
プロジェクトの設定についてもう少しお伝えください。 – NineBerry
私の投稿を編集しました。私はプロジェクトのconfig.xmlファイルを追加しました。 –
アプリケーションのビルドとデプロイに使用するコマンドは何ですか? – NineBerry