在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實例的實際用戶名和密碼。