Syntax for wildcard query in ASP 3.0
Web Server forum
Back To The Forum Home!Search!Private Messaging System

Web Server Talk Web Server Talk > Web Servers reviews > IIS server support > IIS ASP > Syntax for wildcard query in ASP 3.0




  Last Thread   Next Thread Next
  Show Printable Version Email this Page Subscribe to this Thread      Post New Thread    Post A Reply      

    Syntax for wildcard query in ASP 3.0  
Dave


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
03-25-07 12:18 AM

This is my query named "spVOC_Sp_Example_search" in Access 2003:

PARAMETERS [pSearch] Text ( 255 );
SELECT Example.Example
FROM Example
WHERE (((Example.Example) Like "*" & [pSearch] & "*"));

It works great:  I call the query, am prompted for the pSearch param value,
I supply a string as the value, and it returns all records with that string
contained anyhwere in the "example" field.

But none of the queries below will work in ASP 3.0:

Set rs = Server.CreateObject("ADODB.recordset")

sSQL="spVOC_Sp_Example_search pSearch=%a%"
sSQL="spVOC_Sp_Example_search pSearch=*"
sSQL="spVOC_Sp_Example_search pSearch=%"
sSQL="spVOC_Sp_Example_search pSearch='a'"
sSQL="spVOC_Sp_Example_search pSearch=""a"""
sSQL="spVOC_Sp_Example_search a"
sSQL="spVOC_Sp_Example_search *a*"
sSQL="spVOC_Sp_Example_search %a%"
sSQL="spVOC_Sp_Example_search %"
sSQL="spVOC_Sp_Example_search *"
sSQL="spVOC_Sp_Example_search ''"
rs.Open sSQL, cn, 0, 4

i=rs.RecordCount


All of the queries above either return 0 records or error out (Invalid SQL
statement; expected 'DELETE', 'INSERT', 'PROCEDURE', 'SELECT', or 'UPDATE'.)

How do I properly call an Access parameterized wildcard query from ASP?







[ Post a follow-up to this message ]



    Re: Syntax for wildcard query in ASP 3.0  
Bob Barrows [MVP]


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
03-25-07 12:27 PM

Dave wrote:
> This is my query named "spVOC_Sp_Example_search" in Access 2003:
>
> PARAMETERS [pSearch] Text ( 255 );
> SELECT Example.Example
> FROM Example
> WHERE (((Example.Example) Like "*" & [pSearch] & "*"));
>

> How do I properly call an Access parameterized wildcard query from
> ASP?

In order to call the query via ADO, you must change the Jet wildcards to
ODBc wildcards:

WHERE (((Example.Example) Like "%" & [pSearch] & "%"));

Then you can simply call it by:

set rs=createobject("adodb.recordset")
cn.spVOC_Sp_Example_search "a", rs

See:
http://www.google.com/groups?hl=en&...FTNGP12.phx.gbl

http://groups.google.com/groups?hl=...ftngp13.phx.gbl


--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"







[ Post a follow-up to this message ]



    Re: Syntax for wildcard query in ASP 3.0  
Dave


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
03-25-07 06:21 PM

Thanks Bob

I think there is something fundamental I'm missing here.

I am not using dynamic SQL, my query resides on Access so in the Access
application the WHERE clause below returns over 1000 records:

WHERE (((Example.Example) Like "*" & [pSearch] & "*"));

While this returns 0 records:

WHERE (((Example.Example) Like "%" & [pSearch] & "%"));

Both of these WHERE clasues return 0 records to my ASP page.

So how do I use "%" in my situation?




"Bob Barrows [MVP]" <reb01501@NOyahoo.SPAMcom> wrote in message
news:uYeKgvsbHHA.4616@TK2MSFTNGP03.phx.gbl...
> Dave wrote: 
> 
>
> In order to call the query via ADO, you must change the Jet wildcards to
> ODBc wildcards:
>
> WHERE (((Example.Example) Like "%" & [pSearch] & "%"));
>
> Then you can simply call it by:
>
> set rs=createobject("adodb.recordset")
> cn.spVOC_Sp_Example_search "a", rs
>
> See:
> http://www.google.com/groups?hl=en&...FTNGP12.phx.gbl
>
> http://groups.google.com/groups?hl=...ftngp13.phx.gbl
>
>
> --
> Microsoft MVP - ASP/ASP.NET
> Please reply to the newsgroup. This email account is my spam trap so I
> don't check it very often. If you must reply off-line, then remove the
> "NO SPAM"
>







[ Post a follow-up to this message ]



    Re: Syntax for wildcard query in ASP 3.0  
Bob Barrows [MVP]


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
03-26-07 06:35 AM

Dave wrote:
> Thanks Bob
>
> I think there is something fundamental I'm missing here.
>
> I am not using dynamic SQL,

I know you're not.

>  my query resides on Access so in the
> Access application the WHERE clause below returns over 1000 records:

Yes I know. Access uses DAO to execute your stored queries, so the Jet
wildcards can be used. When executing queries, even saved queries, via ADO,
the ODBC wildcards must be used. It's very nonintuitive, I know.
>
>    WHERE (((Example.Example) Like "*" & [pSearch] & "*"));
>
> While this returns 0 records:
>
>    WHERE (((Example.Example) Like "%" & [pSearch] & "%"));
>
> Both of these WHERE clasues return 0 records to my ASP page.
>

The latter should work. I've just tested it with this sample data:

abcd
efgh
halp
pqrs

I created a saved query called "wildcardsearch" with this sql:
SELECT Example
FROM Example
WHERE Example Like "%" & [psearch] & "%";

Using this code to execute the saved query:
<%
dim cn, rs, s
s="a"
set cn=createobject("adodb.connection")
cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & server.MapPath("db7.mdb")
set rs=createobject("adodb.recordset")
cn.wildcardsearch s,rs
if not rs.EOF then
Response.Write rs.GetString(,,,"<BR>")
else
Response.Write "No records retrieved"
end if
rs.Close
cn.Close
%>

I get this result:
abcd
halp



--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"







[ Post a follow-up to this message ]



    Re: Syntax for wildcard query in ASP 3.0  
Dave


View Ip Address Report This Message To A Moderator Edit/Delete Message


 
03-26-07 06:35 AM

My sincere apologies.

It works fine now.  I was testing improperly for the recordset.

Thank you for the example and your patience


"Bob Barrows [MVP]" <reb01501@NOyahoo.SPAMcom> wrote in message
news:%23bWPKxwbHHA.4720@TK2MSFTNGP04.phx.gbl...
> Dave wrote: 
>
> I know you're not.
> 
>
> Yes I know. Access uses DAO to execute your stored queries, so the Jet
> wildcards can be used. When executing queries, even saved queries, via
> ADO, the ODBC wildcards must be used. It's very nonintuitive, I know. 
>
> The latter should work. I've just tested it with this sample data:
>
> abcd
> efgh
> halp
> pqrs
>
> I created a saved query called "wildcardsearch" with this sql:
> SELECT Example
> FROM Example
> WHERE Example Like "%" & [psearch] & "%";
>
> Using this code to execute the saved query:
> <%
> dim cn, rs, s
> s="a"
> set cn=createobject("adodb.connection")
> cn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
> "Data Source=" & server.MapPath("db7.mdb")
> set rs=createobject("adodb.recordset")
> cn.wildcardsearch s,rs
> if not rs.EOF then
> Response.Write rs.GetString(,,,"<BR>")
> else
> Response.Write "No records retrieved"
> end if
> rs.Close
> cn.Close
> %>
>
> I get this result:
> abcd
> halp
>
>
>
> --
> Microsoft MVP - ASP/ASP.NET
> Please reply to the newsgroup. This email account is my spam trap so I
> don't check it very often. If you must reply off-line, then remove the
> "NO SPAM"
>







[ Post a follow-up to this message ]



    Sponsored Links  




 





   All times are GMT. The time now is 08:06 AM.      Post New Thread    Post A Reply      
  Last Thread   Next Thread Next


Most Popular forums 

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is OFF
 
Medical and Health forum | Computer Games Reviews | Graphics design forum

Back To The Top
Home | Usercp | Faq | Register