remove useless print statements

This commit is contained in:
rick 2025-03-27 05:56:17 +00:00
parent 739e356f5d
commit 9252000e37
2 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,6 @@ const executeQuery = async () => {
break; break;
} }
console.log('sqlisql' + sqlQuery.value)
API.DataQuery(store.value, kind.value, currentDatabase.value, sqlQuery.value, (data) => { API.DataQuery(store.value, kind.value, currentDatabase.value, sqlQuery.value, (data) => {
switch (kind.value) { switch (kind.value) {
case 'atest-store-orm': case 'atest-store-orm':

View File

@ -815,6 +815,7 @@ var DataQueryAsync = (store: string, kind: string, currentDatabase: string, quer
interface QueryObject { interface QueryObject {
sql: string sql: string
key: string
} }
var DataQuery = (store: string, kind: string, currentDatabase: string, query: string, callback: (d: any) => void, errHandler: (d: any) => void) => { var DataQuery = (store: string, kind: string, currentDatabase: string, query: string, callback: (d: any) => void, errHandler: (d: any) => void) => {