View Single Post
  #1 (permalink)  
Old 12-17-02, 04:07
BigQ BigQ is offline
Registered User
 
Join Date: Dec 2002
Posts: 3
Unhappy What's wrong with my query in ACCESS2000?

I used ADO method to load ACCESS2000

=========================================
Directly DEBUG in ACCESS

select count(*) from user where name like '%q%' Cont't query the result£¨But It can before)

select count(*) from user where name like '*q*' Can get the correctly result

select count(*) from user where name like '%%q%%' Cont't query the result£¨But It can before)

==========================================
In my ASP web

select count(*) from user where name like '*q*' memory overflowed

select count(*) from user where name like '%q%' memory overflowed

select count(*) from user where name like '%%q%%' memory overflowed

==========================================
What's wrong with this?
Reply With Quote