問題:
如何透過直接執行高效取得資料集SQL指令?
簡介:
處理關聯式資料通常涉及使用 SQL 查詢從資料庫檢索資料。要使用 SQL 指令的結果有效地填入 DataSet,可以使用多種方法。
使用 SqlDataAdapter 的直接方法:
從 SQL 取得 DataSet 最直接的方法指令是使用SqlDataAdapter。下面的程式碼片段提供了直接實作:
public DataSet GetDataSet(string ConnectionString, string SQL) { // Create a SQL connection SqlConnection conn = new SqlConnection(ConnectionString); // Create a data adapter to bridge SQL command to DataSet SqlDataAdapter da = new SqlDataAdapter(); // Create a SQL command to execute SqlCommand cmd = conn.CreateCommand(); cmd.CommandText = SQL; da.SelectCommand = cmd; // Create a DataSet to hold the data DataSet ds = new DataSet(); // Fill the DataSet with data da.Fill(ds); // Return the DataSet return ds; }
說明:
以上是如何透過 SQL 指令直接填入資料集?的詳細內容。更多資訊請關注PHP中文網其他相關文章!