vb6运行时错误13
我正在使用 sql server 作为数据库。 在我的编码中,当我将整数值插入表中时,出现类型不匹配错误。 我的代码,因为
set rst1=cnn1.execute("select distinct(tagid) from pgevent")
它返回一些值 当我尝试插入另一个表时出现错误,
cnn1.execute("insert into tags values("+cint(rst1.fields(0).value)+")")
现在出现错误 谢谢
i am using sql server for database.
In my coding when am inserting integer value into table am getting type mismatch error.
my code as
set rst1=cnn1.execute("select distinct(tagid) from pgevent")
it returns some values
when am trying to insert into another table am getting error
cnn1.execute("insert into tags values("+cint(rst1.fields(0).value)+")")
now am geting error
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该错误是因为您将数值附加到字符串。
以下是替代方案
,或者
当您希望某些内容作为字符串的一部分出现时,请使用
&
。The error is because you are appending a numeric value to a string.
Here are the alternatives
OR
Use
&
when you want something to appear as part of the string.