Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 sql server 中,Dataset 中可以创建多少个数据表?
在数据集中定义数据表是否有任何限制。
你的记忆。除此之外,它仅受Int32限制。你可以在一个(2,147,483,648个表,快乐编码)中容纳2^32的最大数量也是如此。DataTablesDataSet
2^32
DataTables
DataSet
顺便说一句,aDataTable可以包含16,777,216行,但这不是您所要求的。
DataTable
最大大小受 Int32 限制为 2^32,因为 Tables.Count 属性将返回一个整数值。
例如:数据集 ds=new DataSet(); int count=ds.Tables.Count;//它将给出数据集中表的总数。
此外,DataTable 可以存储的最大行数是 16,777,216。