mirror of
https://github.com/moparisthebest/PhoneGap-SQLitePlugin-Android
synced 2024-11-16 14:05:09 -05:00
added a flag to turn on or off an optimization depending on how you use the library
This commit is contained in:
parent
2a98efb74b
commit
b68bfe5ec5
@ -75,6 +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
|
||||||
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();
|
||||||
@ -156,10 +157,10 @@
|
|||||||
{
|
{
|
||||||
var new_query = new Object();;
|
var new_query = new Object();;
|
||||||
new_query['trans_id'] = trans_id;
|
new_query['trans_id'] = trans_id;
|
||||||
//if(callback)
|
if(callback || !this.optimization_no_nested_callbacks)
|
||||||
new_query['query_id'] = get_unique_id();
|
new_query['query_id'] = get_unique_id();
|
||||||
//else
|
else if(this.optimization_no_nested_callbacks)
|
||||||
// new_query['query_id'] = "";
|
new_query['query_id'] = "";
|
||||||
new_query['query'] = query;
|
new_query['query'] = query;
|
||||||
if(params)
|
if(params)
|
||||||
new_query['params'] = params;
|
new_query['params'] = params;
|
||||||
@ -220,7 +221,7 @@
|
|||||||
txself = this;
|
txself = this;
|
||||||
successcb = function()
|
successcb = function()
|
||||||
{
|
{
|
||||||
if(transaction_queue[txself.trans_id].length > 0)
|
if(transaction_queue[txself.trans_id].length > 0 && !txself.optimization_no_nested_callbacks)
|
||||||
{
|
{
|
||||||
txself.__submitted = false;
|
txself.__submitted = false;
|
||||||
txself.complete(success, error);
|
txself.complete(success, error);
|
||||||
|
Loading…
Reference in New Issue
Block a user