在C#中使用SQL Server Express主要涉及到以下几个步骤:
Server=.\SQLEXPRESS;Database=MyDatabase;User Id=sa;Password=myPassword;
下面是一个简单的示例代码,演示了如何在C#中使用SQL Server Express执行一个简单的SELECT查询:
using System;
using System.Data;
using System.Data.SqlClient;
class Program
{
static void Main()
{
// 连接字符串
string connectionString = "Server=.\SQLEXPRESS;Database=MyDatabase;User Id=sa;Password=myPassword;";
// 创建SqlConnection对象
using (SqlConnection connection = new SqlConnection(connectionString))
{
try
{
// 打开连接
connection.Open();
// 创建SqlCommand对象
using (SqlCommand command = new SqlCommand("SELECT * FROM MyTable", connection))
{
// 执行查询并获取结果集
using (SqlDataReader reader = command.ExecuteReader())
{
// 遍历结果集
while (reader.Read())
{
// 输出列的值
Console.WriteLine(string.Format("{0}", reader["ColumnName"]));
}
}
}
}
catch (Exception ex)
{
// 处理异常
Console.WriteLine(ex.Message);
}
}
}
}
请注意,上述示例中的“MyDatabase”应替换为你要连接的数据库的名称,“MyTable”应替换为你要查询的表的名称,“ColumnName”应替换为你要输出的列的名称。同时,确保将“sa”和“myPassword”替换为你的SQL Server Express实例的实际用户名和密码。