我正在制作一个phonegap应用并在那里使用ydn-db。
问题是我不想一直db = new ydn.db.Storage('db-name')
因为它创建了一个新的数据库。有没有办法检查我的数据库是否已存在?
答案 0 :(得分:0)
您还可以使用以检查以下代码。
function onDeviceReady(){ var db = window.openDatabase(“Database”,“1.0”,“PhoneGap Demo”,200000); db.transaction(populateDB,errorCB,successCB); }
// Populate the database
//
function populateDB(tx) {
tx.executeSql('DROP TABLE IF EXISTS DEMO');
tx.executeSql('CREATE TABLE IF NOT EXISTS DEMO (id unique, data)');
}