码迷,mamicode.com
首页 > 数据库 > 详细

C# ACCESS 查询提示“至少一个参数没有被指定”问题

时间:2017-07-12 21:30:48      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:没有   user   nbsp   指定   错误   文本格式   userinfo   文本   问题   

 错误的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   文本   问题   

原文地址:http://www.cnblogs.com/Waming-zhen/p/7157253.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!