comparison Core/SQLite/Statement.h @ 80:6212bf978584

status of series
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 20 Sep 2012 15:18:12 +0200
parents c996319e90bc
children 0e97abc7b950
comparison
equal deleted inserted replaced
79:297bad4e1019 80:6212bf978584
135 // on a column before getting the value out in any way. 135 // on a column before getting the value out in any way.
136 ColumnType GetColumnType(int col) const; 136 ColumnType GetColumnType(int col) const;
137 ColumnType GetDeclaredColumnType(int col) const; 137 ColumnType GetDeclaredColumnType(int col) const;
138 138
139 // These all take a 0-based argument index. 139 // These all take a 0-based argument index.
140 bool ColumnIsNull(int col) const ;
140 bool ColumnBool(int col) const; 141 bool ColumnBool(int col) const;
141 int ColumnInt(int col) const; 142 int ColumnInt(int col) const;
142 int64_t ColumnInt64(int col) const; 143 int64_t ColumnInt64(int col) const;
143 double ColumnDouble(int col) const; 144 double ColumnDouble(int col) const;
144 std::string ColumnString(int col) const; 145 std::string ColumnString(int col) const;