version 0.1.12
[fms.git] / include / db / sqlite3db / sqlite3recordset.h
index 69ad5e5..33d56e2 100644 (file)
@@ -19,6 +19,7 @@ public:
        virtual const int Count() { return m_rows; }\r
        virtual const bool AtBeginning() { return m_currentrow==0; }\r
        virtual const bool AtEnd() { return m_currentrow>=m_rows; }\r
+       virtual const int Cols() { return m_cols; }\r
 \r
        virtual const bool Next() { if(m_currentrow<m_rows) { m_currentrow++; return true; } else { return false; } }\r
        virtual const bool Previous() { if(m_currentrow-1>=0) { m_currentrow--; return true; } else { return false; } }\r