Home | History | Annotate | Download | only in fts1

Lines Matching refs:pValues

1244 /* insert into %_content (rowid, ...) values ([rowid], [pValues]) */
1246 sqlite3_value **pValues){
1256 rc = sqlite3_bind_value(s, 2+i, pValues[i]);
1263 /* update %_content set col0 = pValues[0], col1 = pValues[1], ...
1265 static int content_update(fulltext_vtab *v, sqlite3_value **pValues,
1273 rc = sqlite3_bind_value(s, 1+i, pValues[i]);
1299 const char ***pValues){
1305 *pValues = NULL;
1329 *pValues = values;
3082 /* Add doclists for all terms in [pValues] to the hash table [terms]. */
3084 sqlite3_value **pValues){
3087 char *zText = (char*)sqlite3_value_text(pValues[i]);
3097 const char **pValues;
3100 int rc = content_select(v, iRowid, &pValues);
3104 rc = buildTerms(v, pTerms, iRowid, pValues[i], -1);
3108 freeStringArray(v->nColumn, pValues);
3115 sqlite3_value **pValues,
3119 rc = content_insert(v, pRequestRowid, pValues); /* execute an SQL INSERT */
3122 return insertTerms(v, pTerms, *piRowid, pValues);
3136 sqlite3_value **pValues, fts1Hash *pTerms){
3142 rc = content_update(v, pValues, iRow); /* execute an SQL UPDATE */
3146 return insertTerms(v, pTerms, iRow, pValues);