C#里面添加数据到数据库的代码怎么写?
发布网友
发布时间:2022-06-14 06:46
我来回答
共4个回答
热心网友
时间:2023-10-17 12:26
string filepath = "d:\\signup.xlsx";
string strCon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + filepath + ";Extended Properties='Excel 8.0;HDR=Yes;IMEX=1;'";
OleDbConnection conn = new OleDbConnection(strCon);
OleDbCommand comm = conn.CreateCommand();try
{
conn.Open();
string qry = string.Empty;
qry = "insert into [Sheet1$] values(1,2)";
comm.CommandText = qry;
comm.ExecuteNonQuery();
}
catch (Exception e)
{
}
热心网友
时间:2023-10-17 12:26
自己传sql语句
热心网友
时间:2023-10-17 12:27
先获取,在写sql
热心网友
时间:2023-10-17 12:27
网上找c# 数据库 CURD操作