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
consttableExistsResult=awaitexecuteOperation([{sql: `SELECT name FROM sqlite_master WHERE type='table' AND name=?;`,params: [tableName]}],dataSource)
22
+
consttableExistsResult=awaitexecuteOperation([{sql: `SELECT name FROM sqlite_master WHERE type='table' AND name=?;`,params: [tableName]}],dataSource,config)
16
23
17
24
if(tableExistsResult.length===0){
18
25
returnnull;
19
26
}
20
27
21
28
// Get table data
22
-
constdataResult=awaitexecuteOperation([{sql: `SELECT * FROM ${tableName};`}],dataSource)
29
+
constdataResult=awaitexecuteOperation([{sql: `SELECT * FROM ${tableName};`}],dataSource,config)
0 commit comments