本文介绍了C#连接到数据库,并列出数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能重复:
  SQL服务器查询来发现目前所有的数据库名称

我试图找出如何连接到服务器,而无需先指定一个数据库之后列出数据库。

I am trying to figure out how to list the databases after connecting to the servers without specifying a database first.

sqlConnection1 = new SqlConnection("Server=" + sqlServer + ";Database=" + database +
";User ID=" + userName + ";Password=" + password + ";Trusted_Connection=False;");

所以基本上我想要的是最终用户连接到SQL Server,然后有一个下拉填充的数据库的名单,他们可以连接和查询清单。

So basically what i want is the end user to connect to the sql server, then have a drop down list populated with the list of db's they can connect and query.

想法?

推荐答案

您可以使用<$c$c>SqlConnection.GetSchema:

using(var con = new SqlConnection("Data Source=Yourserver; Integrated Security=True;"))
{
    con.Open();
    DataTable databases = con.GetSchema("Databases");
    foreach (DataRow database in databases.Rows)
    {
        String databaseName = database.Field<String>("database_name");
        short dbID = database.Field<short>("dbid");
        DateTime creationDate = database.Field<DateTime>("create_date");
    }
}

SQL Server的架构集合(ADO.NET)

要确定所支持模式集合的列表,请拨打  的getSchema方法不带任何参数,或使用模式集合名称  MetaDataCollections。这会返​​回一个DataTable具有的名单  支持的模式集合,次数限制,他们  每个支撑,并且它们使用标识符部分的数量。

这篇关于C#连接到数据库,并列出数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 15:42