ExecuteNonQueryStatement executes a non-query SQL statement, such as a DDL or DML command. Parameters: - sql: The SQL statement to execute. Returns: - err: An error if an issue occurs during the operation, such as a connection error or execution failure.
(sql string)
| 48 | // Returns: |
| 49 | // - err: An error if an issue occurs during the operation, such as a connection error or execution failure. |
| 50 | ExecuteNonQueryStatement(sql string) error |
| 51 | |
| 52 | // ExecuteQueryStatement executes a query SQL statement and returns the result set. |
| 53 | // |
no outgoing calls