Lines Matching refs:result
130 auto result = store_->QuerySql(buildQuery, selectArgs);
131 int resultSetNum = result->GoToFirstRow();
139 result->GetColumnIndex(AccountColumns::ACCOUNT_NAME, accountNameIndex);
140 result->GetColumnIndex(AccountColumns::ACCOUNT_TYPE, accountTypeIndex);
141 result->GetColumnIndex(AccountColumns::DATA_INFO, accountCollectionIndex);
142 result->GetString(accountNameIndex, accountName);
143 result->GetString(accountTypeIndex, accountType);
144 result->GetString(accountCollectionIndex, accountCollection);
147 resultSetNum = result->GoToNextRow();
149 result->Close();
180 auto result = store_->QuerySql(buildSql, selectArgs);
181 int resultSetNum = result->GoToFirstRow();
185 result->GetColumnIndex(AccountColumns::ID, reValueIndex);
189 result->GetInt(reValueIndex, reValue);
190 result->GoToNextRow();
193 result->Close();