07 2017 档案

摘要:引发错误的SQL语句如下: sqlStr = "insert into tb_ReportLog values('" + DevSite + "','" + DevID + "','" + Tel + "','" + DevIP + "','" + data + "')"; //6个字段,自动编号字 阅读全文
posted @ 2017-07-19 09:59 Waming 阅读(1737) 评论(0) 推荐(0)
摘要:错误的sql 语句如下: sqlStr = "update tb_userInfo set passWord='" + pw + "' where userName='" + un + "'"; //错误的 sql 语句 正确的sql 语句如下: sqlStr = "update tb_userIn 阅读全文
posted @ 2017-07-12 19:51 Waming 阅读(591) 评论(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 阅读(554) 评论(0) 推荐(0)