摘要:
错误的sql 语句如下: sqlStr = "update tb_userInfo set passWord='" + pw + "' where userName='" + un + "'"; //错误的 sql 语句 正确的sql 语句如下: sqlStr = "update tb_userIn 阅读全文
摘要:
错误的SQL指令如下: sqlStr = “select * from tb_userInfo where userName=” + userName; //错误的 sql 指令 正确的SQL指令如下: sqlStr = “select * from tb_userInfo where userNa 阅读全文