检索 SQL Server 数据库架构和对象并反映在 .Net 应用程序中
在 .Net 应用程序中反映 SQL Server 数据库架构及其所有对象的最简单方法是什么?
基本上,我希望我的应用程序扫描数据库模式并向我显示所有表和其他对象。此外,我还应该能够探索所有表列及其属性(类型、约束等)。
我计划使用数据访问应用程序块来满足我的数据访问需求。是否也能满足上述要求呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用任何您想要的数据访问方法 - 您只需在数据库上运行正确的查询即可。 这篇文章似乎有一个很好的例子来说明你想要什么。
You can use any data access method you want - you just need to run the right queries on the database. This article seems to have a good example of what you want.
SQL Server提供了一些可以使用的系统视图,例如
sys.tables
列出所有表,sys.columns
所有列等。MSDN有一个常见问题解答。
SQL Server provides some system views that can be used, e.g.
sys.tables
lists all tables,sys.columns
all columns etc.MSDN has a FAQ.
尽管您可以对 SQL Server 的元数据表使用查询,但访问此信息的最简洁方法是使用 Sql Server 管理对象 (SMO)。
要使用此示例,请引用 Microsoft.SqlServer.ConnectionInfo、Microsoft.SqlServer.Management.Sdk.Sfc 和 Microsoft.SqlServer.Smo。
Although you can use queries on the metadata tables of SQL Server, the cleanest way to access this information is by using Sql Server Management Objects (SMO).
To use this example, reference the Microsoft.SqlServer.ConnectionInfo, Microsoft.SqlServer.Management.Sdk.Sfc and Microsoft.SqlServer.Smo.