Lines Matching refs:cursor
197 OH_Cursor *cursor = OH_Rdb_Query(store_, predicates, columnNames, len);
200 cursor->getColumnCount(cursor, &columnCount);
204 while (cursor->goToNextRow(cursor) == OH_Rdb_ErrCode::RDB_OK) {
205 cursor->getInt64(cursor, 1, &age);
211 cursor->destroy(cursor);
260 OH_Cursor *cursor = OH_Rdb_Query(cursorTestRdbStore_, predicates, NULL, 0);
261 cursor->goToNextRow(cursor);
265 errCode = cursor->getAssets(cursor, 2, nullptr, &assetCount);
267 errCode = cursor->getAssets(cursor, 2, assets, &assetCount);
296 cursor->destroy(cursor);
305 OH_Cursor *cursor;
306 cursor = OH_Rdb_FindModifyTime(store_, "EMPLOYEE", "ROWID", values);