From 699b27ceccbb1cc1e93d0e8aea0521df32fb5a7f Mon Sep 17 00:00:00 2001 From: Arthur Ice Date: Thu, 3 Jul 2014 15:48:17 -0700 Subject: [PATCH] Added LastInsertID() to MySQLRequestResult --- common/MySQLRequestResult.h | 1 + 1 file changed, 1 insertion(+) diff --git a/common/MySQLRequestResult.h b/common/MySQLRequestResult.h index 807efdfc0..ef2dcd104 100644 --- a/common/MySQLRequestResult.h +++ b/common/MySQLRequestResult.h @@ -41,6 +41,7 @@ public: uint32 RowsAffected() const {return m_RowsAffected;} uint32 RowCount() const {return m_RowCount;} uint32 ColumnCount() const {return m_ColumnCount;} + uint32 LastInsertedID() const {return m_LastInsertedID;} MySQLRequestRow& begin() { return m_CurrentRow; } MySQLRequestRow& end() { return m_OneBeyondRow;}