我有一个需要在临时表中设置值的SQL脚本。
QList<QWidget*> children = findChildren<QWidget*>();
for (QList<QWidget*>::iterator child = children.begin(); child != children.end(); ++child);
(*child)->setStyleSheet(stylesheet);
当我在SQL Server Management Studio中执行此操作时,会导致此输出:
(2行(s)受影响)
但是,我不希望我的用户相信此时数据库中实际上已经发生了某些变化。
我可以阻止INSERT输出任何内容吗?如果是,怎么样?