mirror of
https://github.com/moparisthebest/PhoneGap-SQLitePlugin-Android
synced 2024-11-16 14:05:09 -05:00
changing the default for this optimization, it seems more stable
This commit is contained in:
parent
b68bfe5ec5
commit
597cafd93c
@ -75,7 +75,7 @@
|
|||||||
this.trans_id = get_unique_id();
|
this.trans_id = get_unique_id();
|
||||||
this.__completed = false;
|
this.__completed = false;
|
||||||
this.__submitted = false;
|
this.__submitted = false;
|
||||||
this.optimization_no_nested_callbacks = false;//if set to true large batches of queries within a transaction will be much faster but you lose the ability to do muiti level nesting of executeSQL callbacks
|
this.optimization_no_nested_callbacks = true;//if set to true large batches of queries within a transaction will be much faster but you lose the ability to do muiti level nesting of executeSQL callbacks
|
||||||
console.log("root.SQLitePluginTransaction - this.trans_id:"+this.trans_id);
|
console.log("root.SQLitePluginTransaction - this.trans_id:"+this.trans_id);
|
||||||
transaction_queue[this.trans_id] = [];
|
transaction_queue[this.trans_id] = [];
|
||||||
transaction_callback_queue[this.trans_id] = new Object();
|
transaction_callback_queue[this.trans_id] = new Object();
|
||||||
|
Loading…
Reference in New Issue
Block a user