我知道DataTable有一个Minimum Capacity Attribute,但是有最大容量属性吗?在用数据填充对象时,如果达到最大大小会在哪里生成异常?
例如:
DataTable table = new DataTable();
using(SqlCommand cmd = new SqlCommand(sqlQuery, sqlConn))
{
SqlDataAdapter ds = new SqlDataAdapter(cmd);
da.Fill(table); //generate exception if DataTable is filled with too much data (e.g. over 100mb in size)
}
答案 0 :(得分:0)
两部分答案: