检索 SQL Server 数据库架构和对象并反映在 .Net 应用程序中

发布于 2024-10-29 03:37:32 字数 181 浏览 1 评论 0 原文

在 .Net 应用程序中反映 SQL Server 数据库架构及其所有对象的最简单方法是什么?

基本上,我希望我的应用程序扫描数据库模式并向我显示所有表和其他对象。此外,我还应该能够探索所有表列及其属性(类型、约束等)。

我计划使用数据访问应用程序块来满足我的数据访问需求。是否也能满足上述要求呢?

What is the simplest way to reflect the SQL Server database schema with all its objects in a .Net application?

Basically I would like my application to scan the database schema and present me all tables and other objects. Further I should be able to explore all table columns and their properties (type, constraints, etc.) as well.

I am planning to use Data Access Application Block for my data access needs. Would it also meet the above stated requirement?

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

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

发布评论

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

评论(3

债姬 2024-11-05 03:37:32

您可以使用任何您想要的数据访问方法 - 您只需在数据库上运行正确的查询即可。 这篇文章似乎有一个很好的例子来说明你想要什么。

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.

深居我梦 2024-11-05 03:37:32

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.

美胚控场 2024-11-05 03:37:32

尽管您可以对 SQL Server 的元数据表使用查询,但访问此信息的最简洁方法是使用 Sql Server 管理对象 (SMO)

要使用此示例,请引用 Microsoft.SqlServer.ConnectionInfo、Microsoft.SqlServer.Management.Sdk.Sfc 和 Microsoft.SqlServer.Smo。

using Microsoft.SqlServer.Management.Smo;
using Microsoft.SqlServer.Management.Common;

   var sqlConnection = new SqlConnection(@"Data Source=(local);Integrated Security=SSPI");
    var server = new Server(new ServerConnection(sqlConnection));

    foreach (Database database in server.Databases)
    {
        foreach (Table table in database.Tables)
        {
            Console.WriteLine("{0}: {1}", database.Name, table.Name);       
        }
    }

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.

using Microsoft.SqlServer.Management.Smo;
using Microsoft.SqlServer.Management.Common;

   var sqlConnection = new SqlConnection(@"Data Source=(local);Integrated Security=SSPI");
    var server = new Server(new ServerConnection(sqlConnection));

    foreach (Database database in server.Databases)
    {
        foreach (Table table in database.Tables)
        {
            Console.WriteLine("{0}: {1}", database.Name, table.Name);       
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文