代码:
Set topdp=conobj.execute("select top 10 Url_Id,Url_Name,EXLEVEL from url where catid=37 order by shopCredit DESC")
字段catid是文本格式的.这样运行会出现数据类型不匹配的错误.
请问如何转换成数据形式读取?
谢谢...我是初学者.
代码:
Set topdp=conobj.execute("select top 10 Url_Id,Url_Name,EXLEVEL from url where catid=37 order by shopCredit DESC")
字段catid是文本格式的.这样运行会出现数据类型不匹配的错误.
请问如何转换成数据形式读取?
谢谢...我是初学者.
Set topdp=conobj.execute("select top 10 Url_Id,Url_Name,EXLEVEL from url where catid='37' order by shopCredit DESC")
字符型的加对'就可以了
去数据库中 把catid的数据类型改成数字型