Return the integer value of the column specified by its index starting at 0
| 51 | |
| 52 | // Return the integer value of the column specified by its index starting at 0 |
| 53 | int32_t Column::getInt() const noexcept |
| 54 | { |
| 55 | return sqlite3_column_int(mStmtPtr.get(), mIndex); |
| 56 | } |
| 57 | |
| 58 | // Return the unsigned integer value of the column specified by its index starting at 0 |
| 59 | uint32_t Column::getUInt() const noexcept |