Skip to content
Snippets Groups Projects
Commit d4cc3472 authored by Steven Murray's avatar Steven Murray
Browse files

Set default value of autocommitMode parameter of executeQuery() and...

Set default value of autocommitMode parameter of executeQuery() and executeNonQuery() to AutocommitMode::AUTOCOMMIT_ON
parent 8b8604b3
No related branches found
No related tags found
No related merge requests found
......@@ -165,14 +165,14 @@ public:
* @param autocommitMode The autocommit mode of the statement.
* @return The result set.
*/
Rset executeQuery(const AutocommitMode autocommitMode);
Rset executeQuery(const AutocommitMode autocommitMode = AutocommitMode::AUTOCOMMIT_ON);
/**
* Executes the statement.
*
* @param autocommitMode The autocommit mode of the statement.
*/
void executeNonQuery(const AutocommitMode autocommitMode);
void executeNonQuery(const AutocommitMode autocommitMode = AutocommitMode::AUTOCOMMIT_ON);
/**
* Returns the number of rows affected by the last execution of this
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment