MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / sqlite3_expert_count

Function sqlite3_expert_count

modules/dasSQLITE/sqlite/shell.c:12199–12203  ·  view source on GitHub ↗

** Return the total number of statements that have been added to this ** sqlite3expert using sqlite3_expert_sql(). */

Source from the content-addressed store, hash-verified

12197** sqlite3expert using sqlite3_expert_sql().
12198*/
12199int sqlite3_expert_count(sqlite3expert *p){
12200 int nRet = 0;
12201 if( p->pStatement ) nRet = p->pStatement->iId+1;
12202 return nRet;
12203}
12204
12205/*
12206** Return a component of the report.

Callers 1

expertFinishFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected