D
dhl2001
Unregistered / Unconfirmed
GUEST, unregistred user!
如果在SQLTEXT没什么问题,
那你把这句话拷到数据库程序那执行一下,
看有没有结果
sqltext="select * from product where"
if category<>"" then
sqltext=sqltext &
" category='"&category&"'"
if item_no<>"" then
sqltext=sqltext &
" and itemno like %'"&itemno&"'%"
if descp<>"" then
sqltext=sqltext &
" and description like %'"&descp&"'%"
sqltext=sqltext &
"order by date desc"
这几句写的不专业,至少没有容错能力
那你把这句话拷到数据库程序那执行一下,
看有没有结果
sqltext="select * from product where"
if category<>"" then
sqltext=sqltext &
" category='"&category&"'"
if item_no<>"" then
sqltext=sqltext &
" and itemno like %'"&itemno&"'%"
if descp<>"" then
sqltext=sqltext &
" and description like %'"&descp&"'%"
sqltext=sqltext &
"order by date desc"
这几句写的不专业,至少没有容错能力