摘要:
有朋友问道:DataTable sheetNames = conn.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Tables, new object[] { null, null, null, "TABLE" });
这个方法获取的EXCEL表名是按字母顺序排列的,如果我要获得EXCEL的第一个工作表名,怎么做?
其实利用Framework提供的Excel 对象模型很容易解决这个问题
阅读全文
摘要:
前文简要介绍了堆中的非聚集索引行(Nonclustered index rows on a Heap)和聚集表中的非聚集索引行(Nonclustered index rows on a Clustered table)
今天我们继续学习三类特殊的非聚集索引行:
1、非惟一的非聚集索引行(nonunique Nonclustered index rows)
2、使用包含性列的非聚集索引行(nonunique Nonclustered index rows with included Columns(using include)) 阅读全文