在C#中與數(shù)據(jù)庫進行交互一般使用ADO.NET技術(shù),可以通過以下步驟與數(shù)據(jù)庫進行交互:
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())
{
// 處理每一行數(shù)據(jù)
}
reader.Close();
connection.Close();
以上是一個簡單的示例,實際使用中可能會涉及到參數(shù)化查詢、事務(wù)處理、異常處理等更復(fù)雜的操作。另外,也可以考慮使用ORM框架如Entity Framework來簡化數(shù)據(jù)庫操作。