Added LastInsertID() to MySQLRequestResult

This commit is contained in:
Arthur Ice 2014-07-03 15:48:17 -07:00 committed by Arthur Ice
parent 3054a4c307
commit 699b27cecc

View File

@ -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;}