MCPcopy Create free account
hub / github.com/cvmfs/cvmfs / FetchRow

Method FetchRow

cvmfs/sql.cc:61–65  ·  view source on GitHub ↗

* Execute the prepared statement or fetch its next row. * This method is intended to step through the result set. * If it returns false this does not necessarily mean, that the actual * statement execution failed, but that no row was fetched. * @return true if a new row was fetched otherwise false */

Source from the content-addressed store, hash-verified

59 * @return true if a new row was fetched otherwise false
60 */
61bool Sql::FetchRow() {
62 LazyInit();
63 last_error_code_ = sqlite3_step(statement_);
64 return SQLITE_ROW == last_error_code_;
65}
66
67
68std::string Sql::DebugResultTable() {

Callers 15

GetNumberOfTagsMethod · 0.80
GetByNameMethod · 0.80
GetByDateMethod · 0.80
RunListingMethod · 0.80
GetBranchHeadMethod · 0.80
PruneBranchesMethod · 0.80
ListBranchesMethod · 0.80
ListRecycleBinMethod · 0.80
GetHashesMethod · 0.80
HasPropertyMethod · 0.80
GetPropertyMethod · 0.80
GetFreePageRatioMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected