Return the double value of the column specified by its index starting at 0
| 69 | |
| 70 | // Return the double value of the column specified by its index starting at 0 |
| 71 | double Column::getDouble() const noexcept |
| 72 | { |
| 73 | return sqlite3_column_double(mStmtPtr.get(), mIndex); |
| 74 | } |
| 75 | |
| 76 | // Return a pointer to the text value (NULL terminated string) of the column specified by its index starting at 0 |
| 77 | const char* Column::getText(const char* apDefaultValue /* = "" */) const noexcept |