Home | History | Annotate | Download | only in dist

Lines Matching defs:pSelect

1029   sqlite3_stmt *pSelect;
1034 rc = sqlite3_prepare_v2(p->db, zSelect, -1, &pSelect, 0);
1035 if( rc!=SQLITE_OK || !pSelect ){
1040 rc = sqlite3_step(pSelect);
1041 nResult = sqlite3_column_count(pSelect);
1047 z = (const char*)sqlite3_column_text(pSelect, 0);
1050 fprintf(p->out, ",%s", sqlite3_column_text(pSelect, i));
1059 rc = sqlite3_step(pSelect);
1061 rc = sqlite3_finalize(pSelect);