ExecuteQueryStatement executes a query SQL statement and returns the result set. Parameters: - sql: The SQL query statement to execute. - timeoutInMs: A pointer to the timeout duration in milliseconds for the query execution. Returns: - result: A pointer to SessionDataSet containing the query resu
(sql string, timeoutInMs *int64)
| 59 | // - result: A pointer to SessionDataSet containing the query results. |
| 60 | // - err: An error if an issue occurs during the operation, such as a connection error or execution failure. |
| 61 | ExecuteQueryStatement(sql string, timeoutInMs *int64) (*SessionDataSet, error) |
| 62 | |
| 63 | // Close closes the session, releasing any held resources. |
| 64 | // |
no outgoing calls
no test coverage detected