Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

If I take a database object (db) and open it with the command

var db = window.openDatabase("phr", "", "Cognovant PHR", 25000000);
// This should open whatever database is created, otherwise spawn one with a blank
// version number ("")

and then later do:

db.changeVersion(db.version, "2"); // Update database to version 2
console.log(db.version); //Should return "2", instead returns previous version of database

This code, line-for-line works flawlessly (almost better than I had hoped) on iOS, but constantly fails to change the database version on Android.

If there's some better way to do this, or some alternative way that needs done on Android, I would be greatly appreciative of the information.

share|improve this question
Upon further research, this issue only shows up on Android version 2.3.x (gingerbread). But i need to make this work for Gingerbread as well, so any help is still appreciated. – Colby R Meier Aug 6 '12 at 21:59

2 Answers

up vote 2 down vote accepted

This is actually pretty simple to solve.

Simply change the 2 argument version of db.changeVersion to the 3 argument version. Example:

db.changeVersion(db.version, "2", function () {console.log("foobar")});

And it will work.

share|improve this answer

This problem also occurs in Android 2.2.

09-28 07:15:14.954: E/Web Console(280): TYPE_MISMATCH_ERR: DOM Exception 17: The type of an object was incompatible with the expected type of the parameter associated to the object. at file:///android_asset/www/devbar/03%20db.js:158

The only solution I see is to workaround with my own version management.

share|improve this answer
1  
See my most recent answer. – Colby R Meier Sep 28 '12 at 18:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.