在C#中與數據庫進行交互一般使用ADO.NET技術,可以通過以下步驟與數據庫進行交互:
using System.Data;
using System.Data.SqlClient;
string connectionString = "Data Source=YourServerName;Initial Catalog=YourDatabaseName;Integrated Security=True;";
SqlConnection connection = new SqlConnection(connectionString);
connection.Open();
string sqlQuery = "SELECT * FROM YourTableName";
SqlCommand command = new SqlCommand(sqlQuery, connection);
SqlDataReader reader = command.ExecuteReader();
while (reader.Read())
{
// 處理每一行數據
}
reader.Close();
connection.Close();
以上是一個簡單的示例,實際使用中可能會涉及到參數化查詢、事務處理、異常處理等更復雜的操作。另外,也可以考慮使用ORM框架如Entity Framework來簡化數據庫操作。