更新SQL记录表中的部分记录的一个字段值!!
If Option1.Value = True ThenAdodc1.CommandType = adCmdText
Adodc1.ConnectionString = "Provider=SQLOLEDB.1 Password=hjlzd8000 Persist Security Info=True;User ID=hjlzd;
Initial Catalog=NORMA;Data Source=SERVER"
Adodc1.RecordSource = "select ID,content from table06 where ID between '" & Text2.Text & "' and '" & Text3.Text & "'"
Adodc1.Refresh
Adodc1.Recordset.Update
End If
其中text1与表 table06 中的字段“content”绑定,想通过更新Adodc来更新table06表中ID号从“text2.text”
到"text3.text"的记录中“content”的内容,使content的值变为text1的内容!请指点谢谢!
小弟按此代码执行后,表table06中“content‘的值有所改变,但只有ID为”text3.text“的记录的"content"有改变!
请问如何将表中ID号从”text2.text“到"text3.text"的记录中"content”的值都更新???