以下成员源于类 QSqlDriver 已过时。 提供它们是为使旧源代码能继续工作。强烈建议不要在新代码中使用它们。
(obsolete)
void
|
notification (const QString & name ) |
[signal]
void
QSqlDriver::
notification
(const
QString
&
name
)
此函数已过时。提供它是为使旧源代码能继续工作。强烈建议不要在新代码中使用它。
This signal is emitted when the database posts an event notification that the driver subscribes to. name identifies the event notification.
use QSqlDriver::notification(const QString &name, QSqlDriver::NotificationSource source, const QVariant &payload) instead
注意: 信号 notification 在此类中被重载。通过使用函数指针句法连接到此信号,Qt 提供用于获得如此范例展示的函数指针的方便帮助程序:
connect(sqlDriver, QOverload<const QString &>::of(&QSqlDriver::notification), [=](const QString &name){ /* ... */ });
该函数在 Qt 4.4 引入。
另请参阅 subscribeToNotification ().