diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-06-21 12:50:57 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-06-21 12:50:57 +0200 |
commit | 24376342ab86b5535b455c8a52c0280a9a57be24 (patch) | |
tree | 17a16228900134d82e8c38bf886d22e285f57f5e | |
parent | 3e35d69611534c57f06bfc7ec11f505ba97c8aab (diff) |
Fix typo in comment
-rw-r--r-- | odb/oracle/statement.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/odb/oracle/statement.hxx b/odb/oracle/statement.hxx index 733bcb4..d435286 100644 --- a/odb/oracle/statement.hxx +++ b/odb/oracle/statement.hxx @@ -408,7 +408,7 @@ namespace odb return execute (n, &mex); } - // Return the number of rows affected (deleted) by the parameter + // Return the number of rows affected (updated) by the parameter // set. If this is a batch (n > 1 in execute() call above) and it // is impossible to determine the affected row count for each // parameter set, then this function returns result_unknown. All @@ -509,7 +509,6 @@ namespace odb return result_; } - unsigned long long execute () { |