代码:
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")
Int函数
catid字段的类型是文本型 还是数字型
文本型:catid='37'
数字型:catid=37
你这里说的, catid 为文本格式,那么它只存贮字符串,而你这里的catid=37,显示这么写是不对的,应该是
catid='37',用单引号格开,如果你确定catid只用来存贮数字,那么还是建议你把它的字段类型改成int型