MCPcopy Create free account
hub / github.com/IppClub/Dora-SSR / getDouble

Method getDouble

Source/3rdParty/sqlite/SQLiteCpp/Column.cpp:71–74  ·  view source on GitHub ↗

Return the double value of the column specified by its index starting at 0

Source from the content-addressed store, hash-verified

69
70// Return the double value of the column specified by its index starting at 0
71double 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
77const char* Column::getText(const char* apDefaultValue /* = "" */) const noexcept

Callers 1

queryUnsafeMethod · 0.80

Calls 1

getMethod · 0.65

Tested by

no test coverage detected