Skip to content

Commit

Permalink
Can store some of the SQL updates in a structure in the debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
yazz committed Nov 20, 2024
1 parent e0a6a92 commit 551a64e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions public/go.html
Original file line number Diff line number Diff line change
Expand Up @@ -9719,6 +9719,20 @@
mm.selectedTraceLogItemArguments = JSON.parse(mm.selectedTraceLogItem.arguments)
}


//
// sort out the SQL statement log
//
let sqlLogRecord1 = sqlui1( "select * from ui_table_debug_sql_log where fk_parent_debug_trace_log_id = ?",[mm.log_id])
if (sqlLogRecord1) {
debugger
mm.sqlUiDbUpdates[mm.log_id] = {
traceLogRecord: sqlLogRecord1
}
}

//sqlUiDbUpdates

mm.refresh++
},
methods: {
Expand Down

0 comments on commit 551a64e

Please sign in to comment.