\brief Returns 0-indexed column from row result coerced as a double.
| 290 | |
| 291 | /// \brief Returns 0-indexed column from row result coerced as a double. |
| 292 | double ColumnDouble(int column) const TF_MUST_USE_RESULT { |
| 293 | return sqlite3_column_double(stmt_, column); |
| 294 | } |
| 295 | |
| 296 | /// \brief Copies 0-indexed column from row result coerced as a string. |
| 297 | /// |
no outgoing calls