English 中文(简体)
Can 我在视力演播室将C#分解时,对实际数据库进行改动?
原标题:Can I commit changes to actual database while debugging C# in Visual Studio?

我正在利用KallExpress数据库制作C#应用程序。 当我打了5点钟,去掉申请和修改数据库时,我相信,正在发生的情况是,在双倍/秒的夹中,有一本数据库的复印件正在发生变化。

然而,当我停止偷窃,然后打5只字时,将数据库的新拷贝放在双倍/双倍的夹中,以便最后一次进行的所有改动。

我的问题是:

在我对申请进行总结时,我是否能够改变实际数据库,这些改动实际上得到拯救,还是只会改变双倍/秒钟的复印件(如果是实际发生的话)?

我看到了类似的问题,但我无法找到答案,如果能够使这些变化在实际卷宗中持续下去的话。

我要求的原因是,在我建立这一申请时,我不断增加一些东西和测试,以确保它们共同努力。 当我提供测试数据时,我正在使用我希望留在数据库中的实际数据。 这样做只会帮助我不必在晚些时候重新输入数据。

事先感谢能够帮助我更好地了解这一进程的任何帮助或信息。

最佳回答

选择解决方案探索者数据库,将“投向产出目录”改为“新版”。 后来,当你最后拿到最后版本时,将数据库贴上了剪辑的复印件,复制到你的源头。

问题回答

如果是新版,问题在于,当你改变数据库结构的任何部分时,这一改动就是对贵项目目录的改动,而不是对你在《设计书》上的版本的改动。

Also, when you try a non-debug run you are not using the copy you have been chaging in the debug location.

I normally use a Postgresql, but as this is a new computer and I discovered MS do this Lite version, decided to give it a try. I have a lot of data which is historic that I want in the table, then some manual manipulation with a bit of SQL, Then I can carry on creating the actual functionality of the database.

你们不仅能够把改动的版本复制到项目目录中,因为有一个记录,没有人似乎知道其中的内容,但微软迫切需要以某种方式与你们的数据库相匹配。 (我猜测你已经尝试过这一点)。

我不希望从每当我跑的时候就开始,就像你一样,我没有找到解决办法。 因此,在绝望的举动中,我把Debug的版本复制到一张头巾。 然后删除了项目解决方案探索者中的版本。

然后,我拖了这一版本,将其投放到解决方案探索者手中。 (除下文所述外,在结构上与原案文相同。)

于是,它收回了该Log案。 现在,我的节点会议开始,有现成的负荷数据。

Words of warning. 1) Changing the database structure. In your solution explorer, the the Linq to SQL DBML file, if you have changed some structural part of the database in code (which is where I tend to do it), right click on the DBML file and go into design view. Then drag into the design any new tables or views that you have added.

2) 由于不得不删除数据库并拖拉数据库,因此写上了一种功能,该功能在表格上运行,但以模拟方式复制贵数据库档案,如:

MyDatabaseBackupmyDatabase_date_time.mdb

记住,如果你回到以前的版本,你需要重新命名我的数据库。

将数据库复制到某些适当地点,并改变在编织档案中的联系,仅指出这一点,只是建议不确定哪类设备。 是的。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签