将数据保存到数据库

发布于 2024-11-08 03:46:47 字数 581 浏览 1 评论 0原文

可能的重复:
将数据保存到数据库

我正在使用 Visual Studio 2010

数据库:express

sql to linq

==== ===============

在应用程序执行期间向数据库插入数据时,它运行正确。

数据被插入到数据库中。

但是

当我停止应用程序并显示在服务器资源管理器中单击的表数据时,不显示数据。为什么会这样呢?

==========================================

database1.mdf=====>属性=======>复制输出方向=始终复制database1Dataset.xsd======>属性=====>复制输出方向=不复制dataclasses1.dbml===== =>属性=====>复制输出方向=不复制

Possible Duplicate:
save data to DB

I am using visual studio 2010

database:express

sql to linq

===================

when inserting data to DB during application execution, it runs correctly.

data is inserted to the DB.

but

when I stop the application and show table data clicked in server explorer does not show data. Why is this so?

========================================

database1.mdf=====> properties =======>copy output direction=copy always database1Dataset.xsd======>properties=====>copy output direction=do not copy dataclasses1.dbml======>properties=====>copy output direction=do not copy

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一城柳絮吹成雪 2024-11-15 03:46:47

我认为您正在查看“错误”的数据库文件。将“database1.mdf”的复制输出方向设置为“不复制”,并手动将数据库文件复制到Debug文件夹。 “始终复制”将用新的数据库文件替换现有的数据库文件,因此您将丢失以前存储的数据。现在停止调试过程后,检查位于“Debug”文件夹中的数据库文件。

I think you are viewing the "wrong" database file. Set Copy Output Direction of "database1.mdf" to "Do not copy" and manually copy the database file to Debug folder. "Copy Always" will replace the existing database file with a fresh one and thus you lose the previously stored data. Now after stopping the debugging process, check the database file which is located in the "Debug" folder.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文