sqlweb icon indicating copy to clipboard operation
sqlweb copied to clipboard

SqlWeb is an extension of JsStore which allows to use sql query for performing database operation in IndexedDB.

Results 3 sqlweb issues
Sort by recently updated
recently updated
newest added

Hi ujjwalguptaofficial, I am trying to use 'sqlweb' in my ionic 6 project but i am facing challenges like not able to create or initialize db, because db is not...

```javascript // 新增 connection.insert = async function(body) { // if(body['into']== 'Members') console.log('开始插入',body) // console.log('开始插入',body) if (!isOpen()) await openDb(); //获取表格字段 let tableItems = initTable.filter(el => { return el.name == body['into'] })...