摘要: 错误的sql 语句如下: sqlStr = "update tb_userInfo set passWord='" + pw + "' where userName='" + un + "'"; //错误的 sql 语句 正确的sql 语句如下: sqlStr = "update tb_userIn 阅读全文
posted @ 2017-07-12 19:51 Waming 阅读(528) 评论(0) 推荐(0) 编辑
摘要: 错误的SQL指令如下: sqlStr = “select * from tb_userInfo where userName=” + userName; //错误的 sql 指令 正确的SQL指令如下: sqlStr = “select * from tb_userInfo where userNa 阅读全文
posted @ 2017-07-12 19:25 Waming 阅读(498) 评论(0) 推荐(0) 编辑