VB:我想创建忘记密码表单。我想使用表中的用户名和电子邮件从sql表中检索密码到标签

时间:2015-01-20 10:31:58

标签: mysql vb.net

我想创建忘记密码表单。我想使用表格中的用户名和电子邮件从sql表中检索密码到标签。我不知道代码。请帮忙。 VB Form。

1 个答案:

答案 0 :(得分:1)

使用像

这样的SQL查询
 dim password as string

    mysqlcommand cmd=new mysqlcommand("select [password field] from [yourtable] where username=[username field] and email=[email field]",your connection) // define the connection your self
    password=cmd.executescalar 
    yourlabel.text=password  ///display it in label

希望这会有所帮助。