下面是按钮的click事件的代码,你复制到里面,然后把表名改一下,数据库的连接如果你没有配置在web.config中的话就改成
SqlConnection conn = new SqlConnection("server=服务名;Initial catalog=数据库名;user ID=用户名;password=密码;");
下面的代码还有完善的地方,比如用数据库连接用using会比较合适。
有问题再追问吧。
protected void btn_Insert_Click(object sender, EventArgs e)
{
//连接字串"SqlConnString" 写到配置文件(web.config)中
SqlConnection conn = new SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["SqlConnString"].ConnectionString);
SqlTransaction tran = null;
try
{
conn.Open();
for(int i=0 ; i{
string sqlStr = "";
SqlCommand comm = new SqlCommand();
tran = conn.BeginTransaction();
string gdh = gvd.Rows[i].Cells[0].Text.Trim().ToString();
string pn = gvd.Rows[i].Cells[1].Text.Trim().ToString();
int dc = Convert.ToInt32((gvd.Rows[i].Cells[2].Text.Trim().ToString()));
SqlStr += "INSERT 表名(工单号,PN,Datacode) VALUES ('" + gdh + "','" + pn + "','" + dc + "');" ;
comm.CommandText = SqlStr;
comm.Connection = conn;
comm.Transaction = tran;
comm.ExecuteNonQuery();
}
}
catch (Exception ex)
{
Response.Write("更新失败,失败原因:" + ex.Message);
tran.Rollback(); //事务回滚
}
finally
{
conn.Close();
}
}
用2维数组记录信息,再循环插入到数据表中;
在datagridview中添加数据时(发生改变时)将数据一并插入2维数组中。
在按钮的Click事件中写啊,遍历gridview取到数据,连接数据库然后用SQL语句插入Insert进去就好了
//intsert into table
SqlConnection conn = new SqlConnection(dataBaseStr);
try
{
conn.Open();
String sqlInsert = String.Format("insert into Users values('{0}','{1}','{2}','{3}','{4}','{5}')", accID, name, age, gender, tel, email);
SqlCommand sqlCmd = new SqlCommand(sqlInsert, conn);
sqlCmd.ExecuteNonQuery();
}
catch (System.Exception ex)
{
}
finally
{
if (conn!=null)
{
conn.Close();
Response.Redirect("ShowAllUser.aspx");
}
}