View Single Post
Posts: 752 | Thanked: 2,808 times | Joined on Jan 2011 @ Czech Republic
#69
Originally Posted by llelectronics View Post
I need to take a look on how provide default bookmarks with the ability to delete them. It seems not as easy as it sounds
Need a hint?

Here is my version of the db.transaction() function you have in your db.js

Code:
db.transaction(function(tx){
                    tx.executeSql('CREATE TABLE IF NOT EXISTS settings(key TEXT UNIQUE, value TEXT)');
                    var table  = tx.executeSql("SELECT * FROM settings");
                    // Insert default values
                    if (table.rows.length === 0) {
                        tx.executeSql('INSERT INTO settings VALUES(?, ?)', ["region", qsTr("1")]);
                        tx.executeSql('INSERT INTO settings VALUES(?, ?)', ["forecastIndex", 0]);
                        tx.executeSql('INSERT INTO settings VALUES(?, ?)', ["hidePush", 1]);
                    };
                });
The following code is how it is done (in your case, replace 'settings' with 'bookmarks'). Default bookmarks are going to reappear only if the bookmark database is empty.

Code:
var table  = tx.executeSql("SELECT * FROM settings");
if (table.rows.length === 0) {
...
}
It is convenient to load the bookmarks on the first run as well as the settings (I see that your 'default settings' loading is a bit different, but I see this as a more elegant way).

In case of settings, I just put following code in the main qml file:

Code:
function getSetting(key) {
            openDB();
            var res = "";
            db.transaction(function(tx) {
                var rs = tx.executeSql('SELECT value FROM settings WHERE key=?;', [key]);
                res = rs.rows.item(0).value;
            });
            return res;

        Component.onCompleted: {
            region = getSetting('region');
            forecastIndex = getSetting('forecastIndex');
            hidePush = getSetting('hidePush');
        }
I hope this helps

I really need to open source my app as soon as I have time to do it - this code posting is tiring

Last edited by nodevel; 2014-01-17 at 13:40.
 

The Following User Says Thank You to nodevel For This Useful Post: