/** * Execute a SQL statement. * @param statement {string} - SQL statement to execute. @param args {...any} - Arguments to pass to the statement. * @returns {Promise} */ function Execute(statement, ...args) { return wails.CallByID(2804887383, statement, ...args); } /** * Perform a select query. * @param statement {string} - Select SQL statement. * @param args {...any} - Arguments to pass to the statement. * @returns {Promise} */ function Select(statement, ...args) { return wails.CallByID(2209315040, statement, ...args); }