diff options
author | Machiavelli <none@none> | 2010-12-23 16:05:43 +0100 |
---|---|---|
committer | Machiavelli <none@none> | 2010-12-23 16:05:43 +0100 |
commit | 76e111fa073d0074241242334983b5e7d8f64c2d (patch) | |
tree | e75d1de9b13cc8767cc351e886854808e07d0566 /src/server/shared/Database/Transaction.h | |
parent | b6724bea03f6421b7168f098554cd4c43f5e75f3 (diff) |
Core/DBLayer: Allow asynchronous queries with callbacks to be executed in prepared statement format as well.
+ Cleanup and documentation
--HG--
branch : trunk
Diffstat (limited to 'src/server/shared/Database/Transaction.h')
-rwxr-xr-x | src/server/shared/Database/Transaction.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/shared/Database/Transaction.h b/src/server/shared/Database/Transaction.h index 96acef0b01c..a182341f5d7 100755 --- a/src/server/shared/Database/Transaction.h +++ b/src/server/shared/Database/Transaction.h @@ -35,7 +35,7 @@ class Transaction void Append(const char* sql); void PAppend(const char* sql, ...); - size_t GetSize() { return m_queries.size(); } + size_t GetSize() const { return m_queries.size(); } protected: void Cleanup(); |