C#基于OLEDB获取Excel文件表结构信息的方法
程序员文章站
2024-02-10 11:52:40
本文实例讲述了c#基于oledb获取excel文件表结构信息的方法。分享给大家供大家参考,具体如下:
这个问题来自论坛提问,同理可以获得access等数据库的表结构信息。...
本文实例讲述了c#基于oledb获取excel文件表结构信息的方法。分享给大家供大家参考,具体如下:
这个问题来自论坛提问,同理可以获得access等数据库的表结构信息。
using system; namespace consoleapplication11 { class program { public static void main() { getexcelfileinfo( @" c:a.xls " ); } private static void getexcelfileinfo(string path) { string strconn = " provider=microsoft.jet.oledb.4.0; " + " data source= " + path + " ; " + " extended properties=excel 8.0; " ; system.data.oledb.oledbconnection conn = new system.data.oledb.oledbconnection(strconn); conn.open(); system.data.datatable table = conn.getoledbschematable(system.data.oledb.oledbschemaguid.tables, null ); foreach (system.data.datarow drow in table.rows) { string tablename = drow[ " table_name " ].tostring(); console.writeline(tablename + " : " ); system.data.datatable tablecolumns = conn.getoledbschematable(system.data.oledb.oledbschemaguid.columns, new object [] { null , null , tablename , null } ); foreach (system.data.datarow drowcolumns in tablecolumns.rows) { string columnname = drowcolumns[ " column_name " ].tostring(); console.writeline( " " + columnname); } } console.readkey( true ); } } }
更多关于c#相关内容感兴趣的读者可查看本站专题:《c#操作excel技巧总结》、《c#程序设计之线程使用技巧总结》、《c#中xml文件操作技巧汇总》、《c#常见控件用法教程》、《winform控件用法总结》、《c#数据结构与算法教程》、《c#数组操作技巧总结》及《c#面向对象程序设计入门教程》
希望本文所述对大家c#程序设计有所帮助。