storesafe / cordova-sqlite-storage

A Cordova/PhoneGap plugin to open and use sqlite databases on Android, iOS and Windows with HTML5/Web SQL API
Other
2.14k stars 713 forks source link

sqlite where query is not working in react js #1003

Open kiranrayala77 opened 2 years ago

kiranrayala77 commented 2 years ago

db.executeSql('SELECT * FROM PannelListTable WHERE surveyid =?', [surveyId],(result) => { console.log('RESULT: '+ JSON.stringify(result.rows.item[0].paneldata)); setPannelDataDb(result.rows.item[0].paneldata) }, err => { console.error('Error: '+ err); });