marcucio / Cordova-WP-SqlitePlugin

14 stars 20 forks source link

Imbricate query in a transaction #23

Open astuce opened 10 years ago

astuce commented 10 years ago

Hi,

Is it possible to make a transaction in a fed another query request?

tx.executeSql("select id from table1",[], function(value){ tx.requestSql("select * from table2 where idtable1= value.id",[], function(value){ console.log(value); },null); }, null);

This does not seem to work with the plugin.

best regards