gpt4 book ai didi

c++ - 带负载的 QT SQL 通知

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:46:04 27 4
gpt4 key购买 nike

我目前正在研究将添加到 TableView 新行的应用程序,该行已插入到数据库的表中。我从基本类开始处理通知并设置触发器:

CREATE OR REPLACE FUNCTION notify_tableIWantToObserve_update()
RETURNS trigger AS $$
DECLARE
BEGIN
PERFORM pg_notify(
CAST('tableIWantToObserve_update' AS text),
(NEW.tableIWantToObserve_id)::text);
return new;
END;
$$ LANGUAGE plpgsql;

CREATE TRIGGER tRIGGER_notify_tableIWantToObserve_update
AFTER UPDATE
ON tableIWantToObserve
FOR EACH ROW
EXECUTE PROCEDURE notify_tableIWantToObserve_update();

因此它将发送带有有效载荷中更新行的 ID 的通知。这就是我想要的 - 因为重新加载整个表格以后不会成功。

我检查了 QSqlDriver 的文档 http://doc.qt.io/qt-5/qsqldriver.html#notification-1

有了它,我创建了我的“处理程序”:

//这是它的构造函数

MyDB =  new QSqlDatabase(QSqlDatabase::addDatabase("QPSQL", "Main"));

//Removed my data from here (just fro sake of this post)
MyDB->setHostName("-");
MyDB->setPort(0);
MyDB->setDatabaseName("-");
MyDB->setUserName("-");
MyDB->setPassword("-");

MyDB->open();


if( MyDB->isOpen() )
{
qDebug()<<"Connected to DB!";
QObject::connect(
MyDB->driver(),
SIGNAL(notification(const QString&, QSqlDriver::NotificationSource, const QVariant)),
this,
SLOT(slot_DBNotification_Recieved_NotifiAndPayload((const QString&, const QVariant)));
);
}
else
qDebug()<<"NOT connected to DB!";

但它不会起作用。只有使用单个 QString 的驱动程序信号才会连接它——我需要的版本(带有附加信息)不会连接。

我将我的 QT 更新到 5.7,但即使在 QTCreater 中,它也只是告诉我驱动程序的信号只有一个字符串。

有什么解决办法吗?我真的需要使用该信号来检索更新后的行 ID。

编辑 1:

我的处理程序的插槽:

void NotifiHandlerr::slot_DBNotification_Recieved_NotifiAndPayload(const QString& MSG, const QVariant &payload)
{
qDebug() << "I WAS NOTIFIED ABOUT : " + MSG+" WITH DATA : "+payload.toString();
}

编辑 2:

我尝试将 QSqlDriver::NotificationSource 添加为我的插槽中的参数,但我不能 - 它仍然在 .h 中重复错误,即未声明 NotificationSource。

编辑 3:

我在这里添加大部分代码(处理程序类)

// WHOLE .h
#include <QDebug>
#include <QObject>
#include <QString>
#include <QSqlDatabase>
#include <QSqlDriver>
#include <QVariant>
#include <QSqlDriverPlugin>
#include <qsqldriver.h>


class Handler : public QObject
{
Q_OBJECT
public slots:
void slot_DBNotification_Recieved_NotifiAndPayload
(const QString& name, QSqlDriver::NotificationSource source, const QVariant& payload);

public:
explicit Handler();
~Handler();

private:
QSqlDatabase MyDB;
};






//WHOLE .cpp
#include "Handler.h"

Handler::Handler()
{
MyDB = new QSqlDatabase(QSqlDatabase::addDatabase("QPSQL", "Main"));

MyDB->setHostName("-");
MyDB->setPort(0);
MyDB->setDatabaseName("-");
MyDB->setUserName("-");
MyDB->setPassword("-");

MyDB->open();


if( MyDB->isOpen() )
{
qDebug()<<"Connected to DB!";
MyDB->driver()->subscribeToNotification("tableIWantToObserve_update");
QObject::connect(
MyDB->driver(),
SIGNAL(notification(const QString&, QSqlDriver::NotificationSource, const QVariant)),
this,
SLOT(slot_DBNotification_Recieved_NotifiAndPayload((const QString&, const QVariant)));
);
}
else
qDebug()<<"NOT connected to DB!";
}

Handler::~Handler()
{
MyDB->driver()->unsubscribeFromNotification("tableIWantToObserve_update");
MyDB->cloe();
}

void NotificationMaster::slot_DBNotification_Recieved_NotifiAndPayload
(const QString &name, QSqlDriver::NotificationSource source, const QVariant &payload)
{
qDebug() << "I WAS NOTIFIED ABOUT : " + name+" WITH DATA : "+payload.toString();
}

为了消除这个想法 - 我添加了

QT += sql

在我的 .pro 文件中

最佳答案

你的槽有一个错误的签名,这是你应该如何定义它。

在你的头文件中:

//in order to be able to use the enum QSqlDriver::NotificationSource
#include <QSqlDriver>
...
...

class Handler : public QObject{
Q_OBJECT
public:
explicit Handler(QObject *parent = 0);
~Handler();
...
...
...
public slots:
void SqlNotification(const QString& name, QSqlDriver::NotificationSource source,
const QVariant& payload);
...
...
};

并且在构造函数中,当你连接插槽时,你应该先订阅通知:

QSqlDatabase::database().driver()->subscribeToNotification("notification_name");
connect(QSqlDatabase::database().driver(),
SIGNAL(notification(QString,QSqlDriver::NotificationSource,QVariant)), this,
SLOT(SqlNotification(QString,QSqlDriver::NotificationSource,QVariant)));

您可能需要在析构函数中取消订阅(因为您不想再收到通知):

QSqlDatabase::database().driver()->unsubscribeFromNotification("notification_name");

和您的插槽实现:

void Handler::SqlNotification(const QString &name, QSqlDriver::NotificationSource source, const QVariant &payload){
switch(source){
case QSqlDriver::UnknownSource:
qDebug() << "unkown source, name: " << name << "payload:" << payload.toString();
break;
case QSqlDriver::SelfSource:
qDebug() << "self source, name: " << name << "payload:" << payload.toString();
break;
case QSqlDriver::OtherSource:
qDebug() << "other source, name: " << name << "payload:" << payload.toString();
break;
}
}

关于c++ - 带负载的 QT SQL 通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38221256/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com