使用DataReader 用多個表填充資料集
使用包含一對多關係的多個表的資料集時,可以使用DataReader 來填入它。但是,使用單一 DataReader 的預設方法可能無法擷取所有表中的資料。
要克服此限制,您可以使用以下方法:
using System.Data; using System.Data.SqlClient; using System.IO; namespace SampleApp { public class DataSetWithTables { private SqlConnection connection; public DataSet SelectOne(int id) { DataSet result = new DataSet(); string query = @"select * from table1; select * from table2 where table1_id = @ID;"; using (connection = new SqlConnection("ConnectionString")) { connection.Open(); using (SqlCommand command = new SqlCommand(query, connection)) { command.Parameters.AddWithValue("ID", id); using (SqlDataReader reader = command.ExecuteReader()) { DataTable table1 = new DataTable("Table1"); DataTable table2 = new DataTable("Table2"); table1.Load(reader); if (reader.NextResult()) { table2.Load(reader); } result.Tables.Add(table1); result.Tables.Add(table2); } } connection.Close(); } return result; } } }
在此方法中:
以上是如何使用 DataReader 有效率地用多個表填入資料集?的詳細內容。更多資訊請關注PHP中文網其他相關文章!