本文整理汇总了C++中DBResult::clear方法的典型用法代码示例。如果您正苦于以下问题:C++ DBResult::clear方法的具体用法?C++ DBResult::clear怎么用?C++ DBResult::clear使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DBResult
的用法示例。
在下文中一共展示了DBResult::clear方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: storeQuery
bool Database::storeQuery(DBQuery &q, DBResult &dbres)
{
MYSQL_ROW row;
MYSQL_FIELD *fields;
MYSQL_RES *r;
unsigned int num_fields;
// Execute the query
if(!this->executeQuery(q))
return false;
// Getting results from the query
r = mysql_store_result(&m_handle);
if(!r)
{
//throw DBError( mysql_error(&m_handle), DB_ERROR_STORE );
std::cout << "MYSQL ERROR mysql_store_result: " << q.getText() << " " << mysql_error(&m_handle) << std::endl;
return false;
}
// Getting the rows of the result
num_fields = mysql_num_fields(r);
dbres.clear();
// Getting the field names
//dbres.clearFieldNames();
fields = mysql_fetch_fields(r);
for(int i=0; i < num_fields; ++i)
{
dbres.setFieldName(std::string(fields[i].name), i);
}
// Adding the rows to a list
//dbres.clearRows();
while(row = mysql_fetch_row(r))
{
dbres.addRow(row, num_fields);
}
// Free query result
mysql_free_result(r);
r = NULL;
// Check if there are rows in the query
if(dbres.getNumRows() > 0)
return true;
else
return false;
}