c# string怎么连接数据库

avatar
作者
猴君
阅读量:0

在C#中,可以使用ADO.NET或Entity Framework等库来连接数据库并执行SQL查询以连接字符串。以下是使用ADO.NET连接数据库并执行SQL查询的示例代码:

using System; using System.Data; using System.Data.SqlClient;  class Program {     static void Main()     {         string connectionString = "your_connection_string_here";         string sql = "SELECT * FROM your_table_here";          using (SqlConnection conn = new SqlConnection(connectionString))         {             try             {                 conn.Open();                 SqlCommand cmd = new SqlCommand(sql, conn);                 SqlDataReader reader = cmd.ExecuteReader();                  while (reader.Read())                 {                     Console.WriteLine(string.Format("{0}", reader[0]));                 }             }             catch (Exception ex)             {                 Console.WriteLine(ex.Message);             }         }     } } 

在上面的示例中,connectionString变量包含用于连接到数据库的连接字符串,sql变量包含要执行的SQL查询。使用SqlConnection对象打开数据库连接,并使用SqlCommand对象执行SQL查询。使用SqlDataReader对象读取查询结果并将其打印到控制台上。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!