您的位置:首页 > 其它

a universal class to complete import data from an excel file into a database

2004-02-03 21:25 696 查看
How can i do that?
two file
one is update data to database

first step
i will define two sesion to write the operating table and operating columns in server.
two step
tell the customer where and how many columns they can update.

列显示名称1:真实列名1#列显示名称1:真实列名1#列显示名称1:真实列名1

//get the data from excle
string strConn="Provider=Microsoft.Jet.OleDb.4.0;Data Source=d:\\收支表.XLS;Extended Properties=\"Excel 8.0;\"";
OleDbConnection conn=new OleDbConnection(strConn);
conn.Open();
OleDbDataAdapter da=new OleDbDataAdapter("select * from [Sheet1$]",conn);
DataSet ds=new DataSet();
//import data to a dataset
da.Fill(ds,“tablename“);

//define sql Dataadapter
define a dataadapter
SqlDataAdapter adapter = new SqlDataAdapter();
adapter.SelectCommand = new SqlCommand(query, conn);
adapter.Update(ds,“tablename“)

another is import data to database
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: