Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Visual Studio (vb .net) 和 Access 数据库开发一个项目。我需要更改数据库中的一些表/列,所以我只是进入 .accdb 文件并更改了一些内容。现在的问题是如何将这些更改应用于我在 Visual Studio 中的现有数据库?我是否必须删除现有数据库并重新添加修改后的数据库?这给 Visual Studio 的自动生成代码造成了很多混乱,然后我需要手动修复它——一点也不理想。还有另一种更优雅的方法吗?
谢谢
If you did something to your columns in your DB especially Insert .. so should change your code if access the column/field by column index .. but if you access them by column name, you shouldn't make any big changes ..