Home | History | Annotate | Download | only in orig

Lines Matching defs:pSelect

1024   sqlite3_stmt *pSelect;
1029 rc = sqlite3_prepare_v2(p->db, zSelect, -1, &pSelect, 0);
1030 if( rc!=SQLITE_OK || !pSelect ){
1035 rc = sqlite3_step(pSelect);
1036 nResult = sqlite3_column_count(pSelect);
1042 z = (const char*)sqlite3_column_text(pSelect, 0);
1045 fprintf(p->out, ",%s", sqlite3_column_text(pSelect, i));
1054 rc = sqlite3_step(pSelect);
1056 rc = sqlite3_finalize(pSelect);