无法在 Qt4 的 QProcess 中正确启动 mysqldump

Posted

技术标签:

【中文标题】无法在 Qt4 的 QProcess 中正确启动 mysqldump【英文标题】:Can't launch correctly mysqldump in QProcess of Qt4 【发布时间】:2015-07-07 12:53:53 【问题描述】:

我正在尝试在 Qt4 应用程序 (Debian 6) 中从远程主机下载 sql 转储。

QProcess process_one(this), process_two(this);
    QStringList args1, args2;
    args1 << "--host=192.168.0.1" << "--user=root" << "--password=root" << "nfc tag";
    args2 << "--user=root" << "--password=8KQ90fV9" << "nfc_sink";
    process_one.setStandardOutputFile("/home/Volchok/nfc.sql");
    //process_two.setStandardInputFile("/home/Volchok/nfc.sql");
    process_one.start("mysqldump", args1);
    while(!process_one.waitForFinished(-1));
    if (process_one.exitStatus())
        std::cout << "Control Window: error with mysqldump process\n";
        return;
    
    qDebug()<< "error in mysqldump process: " << process_one.error();
    /*process_two.start("mysql", args2);
    while(!process_two.waitForFinished());
    if (process_two.exitStatus())
        std::cout << "Control Window: error with mysql process\n";
        return;
    
    qDebug()<< "error in mysql process: " << process_two.error();*/

应用程序启动 mysqldump,创建 nfc.sql 文件,但它是空的!

-- MySQL dump 10.13  Distrib 5.1.49, for debian-linux-gnu (i486)
--
-- Host: 192.168.0.1    Database: nfc tag
-- ------------------------------------------------------
-- Server version   5.5.43-0+deb7u1

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

终端中的相同命令行可以正常工作。 nfc.sql 文件获取更多数据。 QProcess 以代码 5 结束。 远程主机 - 树莓派 B+。 为什么 qprocess 不能正常工作?我做错了什么?

【问题讨论】:

【参考方案1】:

问题出在

args1 << "--host=192.168.0.1" << "--user=root" << "--password=root" << "nfc tag";

应该是

args1 << "--host=192.168.0.1" << "--user=root" << "--password=root" << "nfc" << "tag";

【讨论】:

【参考方案2】:

分享我的解决方案:Qt5 + mariadb 10。 这不起作用:

QProcess::execute("mysqldump -uabcdef --password='123456' abcdef ");

这行得通:

QProcess::execute("mysqldump -uabcdef --password=\"123456\" abcdef ");

所有代码:

    QProcess process;
    String exe = "mysqldump -uabcdef --password=\"123456\" abcdef";
    process.start(exe);
    process.waitForFinished();
    QFile file(filename);
    if (!file.open(QIODevice::WriteOnly)) 
        qDebug()<<__FUNCTION__<<__LINE__<<" mysqldump is error! ";
        return;
    
    file.write(process.readAllStandardOutput());
    file.close();

【讨论】:

@eyllanesc 谢谢!

以上是关于无法在 Qt4 的 QProcess 中正确启动 mysqldump的主要内容,如果未能解决你的问题,请参考以下文章

正确使用 QProcess

Qt4、QProcess、R:标准输出中的垃圾,行较长

无法使用 pyside Qprocess 启动 exe 文件

QT4:为啥 bash shell 比使用 QProcess 调用的相同脚本更快?

QProcess 无法启动进程:未找到进程

重用 QProcess 对象 (Qt 4.8)