Using Phonegap you can set a function to be called back if the whole database transaction or the individual SQL statement errors. I\'d like to know how to get more informatio
http://docs.phonegap.com/en/2.2.0/cordova_storage_storage.md.html#SQLError
The SQLError object is thrown when an error occurs when manipulating a database.
This object has two properties:
So in your code error.message
will give you a nice description of what went wrong in which transaction.
I think that's exactly what you want, isn't it?
Best regards, F481