关于asp 的一个奇怪的问题
sql="select*from[product]whereid="&checkid(i)setrs=conn.execute(sql)ifnotrs.eofthenif...
sql = "select * from [product] where id="&checkid(i)
set rs = conn.execute(sql)
if not rs.eof then
if rs("smallImg")<>"" then
smallImgs=split(rs("smallImg"),",")
for ii=0 to ubound(smallImgs)
if fso.FileExists(smallImgs(ii)) then
fso.DeleteFile(smallImgs(ii))
end if
next
end if
end if
在if判断rs("smallImg") 的时候,rs("smallImg")是有值的.
但是在if里面 rs("smallImg") 就是空的.
改成这样
sql = "select * from [product] where id="&checkid(i)
set rs = conn.execute(sql)
if not rs.eof then
smallImg=rs("smallImg")
if smallImg<>"" then
smallImgs=split(smallImgs,",")
for ii=0 to ubound(smallImgs)
if fso.FileExists(smallImgs(ii)) then
fso.DeleteFile(smallImgs(ii))
end if
next
end if
end if
就没问题了,求解..
在if 之前输出rs("smallImg") 是有内容的.输出rs("smallImg")<>"" 是true
只是在判断过后rs("smallImg")就为空了.
很不解 展开
set rs = conn.execute(sql)
if not rs.eof then
if rs("smallImg")<>"" then
smallImgs=split(rs("smallImg"),",")
for ii=0 to ubound(smallImgs)
if fso.FileExists(smallImgs(ii)) then
fso.DeleteFile(smallImgs(ii))
end if
next
end if
end if
在if判断rs("smallImg") 的时候,rs("smallImg")是有值的.
但是在if里面 rs("smallImg") 就是空的.
改成这样
sql = "select * from [product] where id="&checkid(i)
set rs = conn.execute(sql)
if not rs.eof then
smallImg=rs("smallImg")
if smallImg<>"" then
smallImgs=split(smallImgs,",")
for ii=0 to ubound(smallImgs)
if fso.FileExists(smallImgs(ii)) then
fso.DeleteFile(smallImgs(ii))
end if
next
end if
end if
就没问题了,求解..
在if 之前输出rs("smallImg") 是有内容的.输出rs("smallImg")<>"" 是true
只是在判断过后rs("smallImg")就为空了.
很不解 展开
4个回答
展开全部
rs.open 与 conn.execute 是有区别的
你可以把
sql = "select * from [product] where id="&checkid(i)
set rs = conn.execute(sql)
换成
sql = "select * from [product] where id="&checkid(i)
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
具体区别请参考下面的参考网站
你可以把
sql = "select * from [product] where id="&checkid(i)
set rs = conn.execute(sql)
换成
sql = "select * from [product] where id="&checkid(i)
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,1
具体区别请参考下面的参考网站
参考资料: http://hi.baidu.com/mucloudli/blog/item/64ede0fc5f333f89b901a098.html
展开全部
IsNull(rs("smallImg"))=False or rs("smallImg")<>""
这要看你数据库的字段类型是什么
有的时候直接是空值,但是有的时候在某些mssql数据库中显示的是Null
这要看你数据库的字段类型是什么
有的时候直接是空值,但是有的时候在某些mssql数据库中显示的是Null
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if rs("smallImg")&""<>"" then
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
数据库字段类型不同造成的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询