protected void btninsert_Click(object sender, EventArgs e)
{
string sqlstr = "insert into tb_website(web_title,web_content,web_commentary,web_photo1,web_http,web_time)values('" + txtweb_title.Text + "','" + txtweb_content.Text + "','" + txtweb_commentary.Text + "','" + labp1.Text + "','" + txtweb_http.Text + "','" + txtweb_time.Text + "')";
con = new OleDbConnection(connectionString);
com = new OleDbCommand(sqlstr, con);
con.Open();
com.ExecuteNonQuery(); //运行出错 ?数据类型不匹配
con.Close();
}
同上一次的问题差不多。也是数据类型的不同。
还是不知道怎么去解决。如果按上次那位大哥方法用在这次的话肯定不行。都是string 不可能转成int了
链接问题:[URL=http://bbs.bc-cn.net/viewthread.php?tid=147490]GridView删除数据时出错,com.ExecuteNonQuery()运行不下去了[/URL]
这次主要是添加。我想问的是怎么样才能让字符形添加进数据库。哪位大虾有什么好的方法吗?