Hi,
WebSQL has been deprecated but it is still useful for some applications at this time.
How would I update a row of data saved into WebSQL, when using a foreach KnockoutJS binding?
<table class='producttable'>
2. <tr>
3. <th>Name</th>
4. <th>Description</th>
5. <th>Price</th>
6. </tr>
7. <tbody data-bind="foreach: products">
8. <tr>
9. <td>
10. <input data-bind='value: name' />
11. </td>
12. <td><input data-bind='value: description' /></td>
13. <td><input data-bind='value: price' /> </td>
14. </tr>
15. </tbody>
16. </table>