\brief Returns 0-indexed column from row result coerced as an integer.
| 285 | |
| 286 | /// \brief Returns 0-indexed column from row result coerced as an integer. |
| 287 | int64 ColumnInt(int column) const TF_MUST_USE_RESULT { |
| 288 | return sqlite3_column_int64(stmt_, column); |
| 289 | } |
| 290 | |
| 291 | /// \brief Returns 0-indexed column from row result coerced as a double. |
| 292 | double ColumnDouble(int column) const TF_MUST_USE_RESULT { |
no outgoing calls