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

Method getColumn

Source/3rdParty/sqlite/SQLiteCpp/Statement.cpp:229–236  ·  view source on GitHub ↗

Return a copy of the column data specified by its index starting at 0 (use the Column copy-constructor)

Source from the content-addressed store, hash-verified

227// Return a copy of the column data specified by its index starting at 0
228// (use the Column copy-constructor)
229Column Statement::getColumn(const int aIndex) const
230{
231 checkRow();
232 checkIndex(aIndex);
233
234 // Share the Statement Object handle with the new Column created
235 return Column(mpPreparedStatement, aIndex);
236}
237
238// Return a copy of the column data specified by its column name starting at 0
239// (use the Column copy-constructor)

Callers 6

existDBUnsafeMethod · 0.80
existMethod · 0.80
queryUnsafeMethod · 0.80
SavepointMethod · 0.80
execAndGetMethod · 0.80
tableExistsMethod · 0.80

Calls 3

checkRowFunction · 0.85
checkIndexFunction · 0.85
ColumnClass · 0.70

Tested by

no test coverage detected