本文整理汇总了C++中Option::setName方法的典型用法代码示例。如果您正苦于以下问题:C++ Option::setName方法的具体用法?C++ Option::setName怎么用?C++ Option::setName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Option
的用法示例。
在下文中一共展示了Option::setName方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: get
//! Searches the OptionDatabase for \var optionName and, if found, returns the
//! Option record in \var option. Returns true if found.
bool OptionDatabase::get(QString const& optionName, Option& option)
{
bool found(false);
bool okay(false);
QString buf("select * from options where Name = '");
buf += optionName;
buf += "';";
QSqlQuery query( QSqlDatabase::database("QChem") );
query.setForwardOnly(true);
if (query.prepare(buf) && query.exec()) {
okay = true;
} else {
QString msg("Database transaction failed:\n");
msg += buf + "\n";
msg += query.lastError().databaseText();
qDebug() << msg;
}
if (okay) {
if (query.next()) {
found = true;
option.setName(query.value(0).toString());
option.setType(query.value(1).toInt());
option.setDefault(query.value(2).toInt());
option.setOptions(query.value(3).toString());
option.setDescription(query.value(4).toString());
option.setImplementation(query.value(5).toInt());
if (query.next()) {
QString msg("More than one record for ");
msg += optionName;
msg += " found in database.";
QMsgBox::information(0, "EGAD!", msg);
}
}
while (query.next()) {}
}
return found;
}