阅读量: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
对象读取查询结果并将其打印到控制台上。