Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DAO.recordset filter won't work with preceding wildcard?

Status
Not open for further replies.

1DMF

Programmer
Jan 18, 2005
8,795
0
0
GB
Hi,

I seem be going round in circles at the moment trying to find the most efficient way of getting a recordset and poviding a search facility (filtering) for remote users.

I've just written myself a new helper class for getting a recordset via a stored procedure and apply a filter to it for my GUI form, everything is dandy.

Except I now find that when I apply a filter to the recordset with a wild card to srart with it is ignored ..ie.
Code:
rs.Filter = "CompanyName LIKE '*" & sFilter & "*'"

It returns as if the first wildcard wasn't present?

Am i doing something wrong, Or do I need to write a helper method that builds a filter string with...
Code:
rs.Filter = "CompanyName LIKE 'a*" & sFilter & "*' OR CompanyName LIKE 'b*" & sFilter & "*' OR CompanyName LIKE 'c*" & sFilter & "*'" ...
you get the picture up to z!

Help with this is appreciated, I was so close to finally geting a lightening fast remote user application, and now DAO has thrown this curve ball at me!

Thanks,
1DMF

"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."

"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"

MIME::Lite TLS Email Encryption - Perl v0.02 beta
 
Did your first example work? Because your second example really isn't an attempt at filtering with a wildcard at the start (you've got one mid string and one at the end)...

Andy
---------------------------------
Zebracorn: 50% Zebra, 50% Unicorn = 100% Real.

 
Hi Harley, yup got it working thanks.

It wasn't the filtering, there was an error in the SP!

Though I think you mis-read the point of my second example.

Anyway, all sorted, time for a coffe break and do something less taxing!

"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."

"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"

MIME::Lite TLS Email Encryption - Perl v0.02 beta
 
Glad you got it working [smile]

I'm guessing that your second example was indeed an example then, not meant to illustrate the code you were using?

Andy
---------------------------------
Zebracorn: 50% Zebra, 50% Unicorn = 100% Real.

 
yeah, I thought the wildcard wasn't working if used as first character, and the thing that kinda enforced that opinion was searching google. There is a plethora of people saying it doesn't work.

I thought I'd have to create a massive filter with each letter of the alphabet, then the wildcard, then the users input, then another wildcard.

Turns out the records I was trying to filter weren't even in the datasource, as the SP wasn't working right.

So went on a bit of a wild goose chase before I realised the problem.

It's now working really well, I can see massive improvements with my apps for remote users on the horizon, just hope I'm given the time to re-write exisiting apps, but you know what bosses are like, always wanting something new even before a previous project has been finished!

Hey ho, keeps me busy I guess!




"In complete darkness we are all the same, only our knowledge and wisdom separates us, don't let your eyes deceive you."

"If a shortcut was meant to be easy, it wouldn't be a shortcut, it would be the way!"

MIME::Lite TLS Email Encryption - Perl v0.02 beta
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top