-
Notifications
You must be signed in to change notification settings - Fork 715
Open
Description
The second parameter of executeSql
contains values to be passed to SQLite as bind parameters. According to the SQLite documentation, such parameters can be positional or named. So I was expecting the following to work:
executeSql(
'select * from Assignment where id = :assignmentId',
{ assignmentId: 42 },
success, error);
However, this doesn't seem to work. How can I use named params with the Cordova SQLite storage plugin?