SQL语句问题 我是新手
大家好 我是新手 问点问题If txtPassword1.Text <> "" And txtPassword2.Text <> "" Then
If txtPassword1.Text = txtPassword2.Text Then
Adodc1.CommandType = adCmdText
Adodc1.RecordSource = "select * from 系统用户 where user_ID = '" & User & "'"
Adodc1.Refresh
Adodc1.Recordset.Fields(1) = txtPassword1.Text
Adodc1.Recordset.Update
MsgBox "密码修改完毕!"
Unload Me
这个是修改密码的程序
我想问问
Adodc1.RecordSource = "select * from 系统用户 where user_ID = '" & User & "'"
这条语句中where user_ID = '" & User & "'"
是什么意思 user是指什么
User是在通用的类中定义的
user_ID user_PWD
wyq 1111
yxh 1234