ASP讨论QQ群:251346273
你那样不行.
string updateStr = "update Customer set username = '赵六' where username = '" + textBox1.Text.Trim() + "'";
把 textBox1.Text.Trim() 这个值当作一个变量来看...
还有就是初学时最好什么代码都自己写,不要直接用VS自带的数据库连接......
SqlConnection conn=new SqlConnection("data source=A385A52FFF9B4DF;database=MIS;uid=sa;pwd=");
SqlCommand myCommand=new SqlCommand();
SqlDataReader rd;
String strsql;
myCommand.CommandText="Insert into Customer values('"+this.userNameTextBox.Text.ToString()+"','"+this.passwordTextBox.Text.ToString()+"','"+this.emailTextBox.Text.ToString()+"')";
myCommand.Connection =conn;
conn.Open();
myCommand.ExecuteNonQuery();
conn.Close();
上面的代码就属于自己写的,对吗???
服务器资源管理器——〉数据连接——〉添加连接——〉连接(选项)
这个就属于VS自带的数据库连接,对吧。
[此贴子已经被作者于2007-2-9 12:36:14编辑过]