You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the C API, 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. We would like the following to work:
executeSql('select * from Assignment where id = :assignmentId',{assignmentId: 42},success,error);
The text was updated successfully, but these errors were encountered:
NOTE: This issue is identical to storesafe/cordova-sqlite-storage#717.
In the C API, 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. We would like the following to work:The text was updated successfully, but these errors were encountered: