本文整理汇总了C++中QDir::rootPath方法的典型用法代码示例。如果您正苦于以下问题:C++ QDir::rootPath方法的具体用法?C++ QDir::rootPath怎么用?C++ QDir::rootPath使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QDir
的用法示例。
在下文中一共展示了QDir::rootPath方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: yell
int
FormMain::dbSaveFolder( const QDir & dir, int parent_id ) const
{
QSqlQuery q;
q.prepare("INSERT INTO folders ("
"parent_id, "
"name, "
"path, "
"size "
") VALUES ("
":pid, "
":nam, "
":pat, "
":siz )");
q.bindValue(":pid", parent_id );
q.bindValue(":nam", dir.dirName().isEmpty() ? dir.rootPath() : dir.dirName() );
q.bindValue(":pat", dir.absolutePath() );
q.bindValue(":siz", 0 ); // void dbSaveFolderSize( int folder_id, qint64 size ) const
if ( q.exec() ) {
q.prepare("SELECT last_insert_rowid()");
if ( q.exec() ) {
if ( q.first() )
return q.value( 0 ).toInt();
else
return -1;
} else {
emit yell( q.lastError().text() );
return -1;
}
} else {
emit yell( q.lastError().text() );
return -1;
}
}