使用 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中文网其他相关文章!