至少一个参数没有被指定值。
asp连接数据库出现这个错误
一般是因为 SQL语句含有系统保留字
比如我的错误
select * from q where question-id=1
就会有这个问题
改为 select * from q where [question-id]=1
就可以了
至少一个参数没有被指定值。
asp连接数据库出现这个错误
一般是因为 SQL语句含有系统保留字
比如我的错误
select * from q where question-id=1
就会有这个问题
改为 select * from q where [question-id]=1
就可以了