关闭winform应用程序、自动保存选项后sql server中的数据丢失
SQL Server 中是否有任何自动保存类型的选项。就像我从一个小伙子那里了解到,当数据通过应用程序保存到数据库中时,关闭应用程序后数据库会丢失其数据,&数据必须再次输入到数据库中,这是一个错误,因此要更正此问题,必须打开数据库的自动保存选项。
SQL Server 中存在这个吗?如果是,那么我认为默认情况下它始终处于打开状态,因为当我们从 winform .net 应用程序将任何数据保存在 SQL Server 数据库中时,即使关闭应用程序并再次运行它,数据也不会丢失。
Is there any AutoSave kind of option in SQL Server. Like i came to know from a chap that when the data is saved into a database via an application then after closing the application the database loses its data, & the data had to be entered again into the database which was an error so to correct this, the autosave option of the database have to be turned ON.
do this exist in SQL Server? if yes, then i think it is always ON by default, because when we save any data in a sql server database from a winform .net application then the data is not lost even after closing the application and running it again.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不存在这样的问题,所以没有修复。
除非客户端或数据库代码有问题,否则这就是垃圾。这不是数据库引擎问题。
示例:
编辑:
或者您是按照上一个问题使用临时表?
There is no such problem and so no fix.
This is rubbish unless the client or database code is at fault. It is not a database engine issue.
Examples:
Edit:
Or are you using temp tables as per a previous question?