\brief Returns number of bytes stored at 0-indexed column.
| 316 | |
| 317 | /// \brief Returns number of bytes stored at 0-indexed column. |
| 318 | int ColumnSize(int column) const TF_MUST_USE_RESULT { |
| 319 | return sqlite3_column_bytes(stmt_, column); |
| 320 | } |
| 321 | |
| 322 | /// \brief Move constructor, after which <other> is reset to empty. |
| 323 | SqliteStatement(SqliteStatement&& other) noexcept |