时间:2021-07-01 10:21:17 帮助过:26人阅读
错误的SQL指令如下:
sqlStr = “select * from tb_userInfo where userName=” + userName; //错误的 sql 指令
正确的SQL指令如下:
sqlStr = “select * from tb_userInfo where userName=‘’” + userName + “‘”; //正确的sql指令
错误原因:userName是文本格式 , userName 左右都须加单引号 ‘ 。
C# ACCESS 查询提示“至少一个参数没有被指定”问题
标签:没有 user nbsp 指定 错误 文本格式 userinfo 文本 问题