472,352 Members | 1,508 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,352 software developers and data experts.

Recordset Query!

AJ
Hi all,

I am trying to execute the following code:

'create recordset object
SET recData = Server.CreateObject("ADODB.recordset")

'open recordset
recData.Open "exec GetExhibitorsSearchByName 20,38916,38916,'do'", DataConn,
3, 3

20 = First Param (EventID)
38916 = Second Param (Start Date Int)
38916 = Third Param (End Date Int)
'do' = Fourth Parameter ('Search Criteria')

When executed from ASP this code does not return any info.

However, when i execute the query within access, with the same parameters, i
get the desire results.

Anyone have any thoughts on what i am doing wrong?

Cheers,
Adam
Jul 18 '06 #1
6 1560
Could we please stick with a single thread? Thank you.
More below:
AJ wrote:
Hi all,

I am trying to execute the following code:

'create recordset object
SET recData = Server.CreateObject("ADODB.recordset")

'open recordset
recData.Open "exec GetExhibitorsSearchByName 20,38916,38916,'do'",
DataConn, 3, 3

20 = First Param (EventID)
38916 = Second Param (Start Date Int)
38916 = Third Param (End Date Int)
The dates are Ints??? Why is that? What are the actual datatypes of the
fields in your tables?
'do' = Fourth Parameter ('Search Criteria')

When executed from ASP this code does not return any info.

However, when i execute the query within access, with the same
parameters, i get the desire results.

Anyone have any thoughts on what i am doing wrong?
I prefer this technique:

SET recData = Server.CreateObject("ADODB.recordset")
DataConn.GetExhibitorsSearchByName 20,38916,38916,"do",recData

Unfortunately, I have no chance of telling you what the problem is without
seeing some data and the actual sql in the saved query that you are
executing.

--
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"
Jul 18 '06 #2
AJ
Hi Bob,

The stored queries are below:

I don't think this current problem is directly related to my queries though.

I thought it was a parameter issue, but when i removed all parameters from
the queries (hard coded values into selects) and ran 'exec
GetExhibitorsSearchByName' from asp i still got no results; if i run
GetExhibitorsSearchByName in Access all is well.

Thus it appears to be a problem with the querying method or recordset.

I would use your preferred method, but it doesn't provide much flexibility
when
intergrating with my paging class and generating the sql queries 'exec ....'
dynamically.

My code is based on the suggestions on this page.
http://authors.aspalliance.com/steve...les/sprocs.asp

I am almost at a loss, why this isn't working..

Any other thoughts??

Thanks for you help...and responses so far...!!!!

Cheers,
Adam

ASP:

SET recData = Server.CreateObject("ADODB.recordset")

'open recordset
recData.Open "exec GetExhibitorsSearchByName 20,38916,38916,'do'", DataConn,
3, 3

QUERIES:

ExhibitorsSearchByName
SELECT

c.ID, c.Company_Name, p.[level], 1 As QueryNbr

FROM

(Company AS c LEFT JOIN Sale AS s ON c.ID = s.Company_ID)

LEFT JOIN

Package AS p ON s.Package_ID = p.ID

WHERE

c.Category = 'EXH'

AND

(s.ID = (SELECT Max(ID) FROM Sale WHERE Company_ID = c.ID) Or
IsNull(s.ID))

AND

EXISTS(SELECT Company_ID FROM Event_Company_Link WHERE Event_ID
=@EventID AND Company_ID = c.ID)

AND

(INT(Start_Date) <= @StartDate) AND (INT(End_Date) >= @EndDate)

ORDER BY

p.[level] DESC , c.Company_Name, c.ID

UNION SELECT

c.ID, c.Company_Name, p.[level], 2 As QueryNbr

FROM

(Company AS c LEFT JOIN Sale AS s ON c.ID = s.Company_ID)

LEFT JOIN

Package AS p ON s.Package_ID = p.ID

WHERE

c.Category = 'EXH'

AND

(s.ID = (SELECT Max(ID) FROM Sale WHERE Company_ID = c.ID) Or
IsNull(s.ID))

AND

EXISTS(SELECT Company_ID FROM Event_Company_Link WHERE Event_ID =
@EventID AND Company_ID = c.ID)
ORDER BY c.Company_Name, c.ID;
GetExhibitorsSearchByName

SELECT ID, First(Company_Name), First([level]), First(QueryNbr)
FROM ExhibitorsSearchByName
GROUP BY ID
HAVING First(Company_Name) LIKE '*' & @CompanyName & '*';
Jul 18 '06 #3
Are you using Access? Access doesn't support the Exec command. In
fact, any attempt to try this should have thrown an Invalid Operation
error. Have you got On Error Resume Next on your page?

You should try Bob's method and see if that works. If your query and
parameters return a recordset when run in Access, they should do using
Bob's method from ASP too.

--
Mike Brind
AJ wrote:
Hi Bob,

The stored queries are below:

I don't think this current problem is directly related to my queries though.

I thought it was a parameter issue, but when i removed all parameters from
the queries (hard coded values into selects) and ran 'exec
GetExhibitorsSearchByName' from asp i still got no results; if i run
GetExhibitorsSearchByName in Access all is well.

Thus it appears to be a problem with the querying method or recordset.

I would use your preferred method, but it doesn't provide much flexibility
when
intergrating with my paging class and generating the sql queries 'exec ....'
dynamically.

My code is based on the suggestions on this page.
http://authors.aspalliance.com/steve...les/sprocs.asp

I am almost at a loss, why this isn't working..

Any other thoughts??

Thanks for you help...and responses so far...!!!!

Cheers,
Adam

ASP:

SET recData = Server.CreateObject("ADODB.recordset")

'open recordset
recData.Open "exec GetExhibitorsSearchByName 20,38916,38916,'do'", DataConn,
3, 3

QUERIES:

ExhibitorsSearchByName
SELECT

c.ID, c.Company_Name, p.[level], 1 As QueryNbr

FROM

(Company AS c LEFT JOIN Sale AS s ON c.ID = s.Company_ID)

LEFT JOIN

Package AS p ON s.Package_ID = p.ID

WHERE

c.Category = 'EXH'

AND

(s.ID = (SELECT Max(ID) FROM Sale WHERE Company_ID = c.ID) Or
IsNull(s.ID))

AND

EXISTS(SELECT Company_ID FROM Event_Company_Link WHERE Event_ID
=@EventID AND Company_ID = c.ID)

AND

(INT(Start_Date) <= @StartDate) AND (INT(End_Date) >= @EndDate)

ORDER BY

p.[level] DESC , c.Company_Name, c.ID

UNION SELECT

c.ID, c.Company_Name, p.[level], 2 As QueryNbr

FROM

(Company AS c LEFT JOIN Sale AS s ON c.ID = s.Company_ID)

LEFT JOIN

Package AS p ON s.Package_ID = p.ID

WHERE

c.Category = 'EXH'

AND

(s.ID = (SELECT Max(ID) FROM Sale WHERE Company_ID = c.ID) Or
IsNull(s.ID))

AND

EXISTS(SELECT Company_ID FROM Event_Company_Link WHERE Event_ID =
@EventID AND Company_ID = c.ID)
ORDER BY c.Company_Name, c.ID;
GetExhibitorsSearchByName

SELECT ID, First(Company_Name), First([level]), First(QueryNbr)
FROM ExhibitorsSearchByName
GROUP BY ID
HAVING First(Company_Name) LIKE '*' & @CompanyName & '*';
Jul 18 '06 #4
AJ wrote:
Hi Bob,

The stored queries are below:

I don't think this current problem is directly related to my queries
though.

I thought it was a parameter issue, but when i removed all parameters
from the queries (hard coded values into selects) and ran 'exec
GetExhibitorsSearchByName' from asp i still got no results; if i run
GetExhibitorsSearchByName in Access all is well.

Thus it appears to be a problem with the querying method or recordset.

I would use your preferred method, but it doesn't provide much
flexibility when
intergrating with my paging class and generating the sql queries
'exec ....' dynamically.

My code is based on the suggestions on this page.
http://authors.aspalliance.com/steve...les/sprocs.asp

I am almost at a loss, why this isn't working..

Any other thoughts??
Not until you provide the actual datatypes of the fields in your table.
I'm still flabbergasted that you are attempting to pass dates as
integers.

>
GetExhibitorsSearchByName

SELECT ID, First(Company_Name), First([level]), First(QueryNbr)
FROM ExhibitorsSearchByName
GROUP BY ID
HAVING First(Company_Name) LIKE '*' & @CompanyName & '*';
Actually, here is your problem right here. When running a query via ADO,
even a saved query, you must use the ODBC wildcards, not the Jet
wildcards. Change this to:

HAVING First(Company_Name) LIKE '%' & @CompanyName & '%';

You might want to save the original version for testing in the Access
environment.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 18 '06 #5
AJ
Hi Bob,

It was the wildcard characters;

1) % works with ASP & ADO but not with Access
2) * works with Access but not with ASP & ADO.

I find this quite bizarre, so thanks for the insight!!!

Regarding the date issue, it didn't right with me either, but while it worked
i didn't really want to tinker with it. As you have already noticed I don't
particularly like Access, & am not all that good at it;

I find it much easier to do things in SQL Server even MySQL, but a new job
has found me working with Access again until they migrate (which is planned).

The intentions of the previous developer in comparing the Dates as INTS
was to remove the fractional part of any given date.

Consequently 01/02/2006 9:00am & 01/02/2006 12:00pm would amount to
01/02/2006.

This article deals with the problem.
http://support.microsoft.com/kb/210276/

I have since changed the implementation:
AND
(DateValue(Start_Date) <= INT(Now())) AND (DateValue(End_Date) >=
INT(Now()))

Thanks for your help!!!

Cheers,
Adam

"Bob Barrows [MVP]" wrote:
AJ wrote:
Hi Bob,

The stored queries are below:

I don't think this current problem is directly related to my queries
though.

I thought it was a parameter issue, but when i removed all parameters
from the queries (hard coded values into selects) and ran 'exec
GetExhibitorsSearchByName' from asp i still got no results; if i run
GetExhibitorsSearchByName in Access all is well.

Thus it appears to be a problem with the querying method or recordset.

I would use your preferred method, but it doesn't provide much
flexibility when
intergrating with my paging class and generating the sql queries
'exec ....' dynamically.

My code is based on the suggestions on this page.
http://authors.aspalliance.com/steve...les/sprocs.asp

I am almost at a loss, why this isn't working..

Any other thoughts??
Not until you provide the actual datatypes of the fields in your table.
I'm still flabbergasted that you are attempting to pass dates as
integers.


GetExhibitorsSearchByName

SELECT ID, First(Company_Name), First([level]), First(QueryNbr)
FROM ExhibitorsSearchByName
GROUP BY ID
HAVING First(Company_Name) LIKE '*' & @CompanyName & '*';

Actually, here is your problem right here. When running a query via ADO,
even a saved query, you must use the ODBC wildcards, not the Jet
wildcards. Change this to:

HAVING First(Company_Name) LIKE '%' & @CompanyName & '%';

You might want to save the original version for testing in the Access
environment.

--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 18 '06 #6
AJ wrote:
Hi Bob,

It was the wildcard characters;

1) % works with ASP & ADO but not with Access
2) * works with Access but not with ASP & ADO.

I find this quite bizarre, so thanks for the insight!!!

Regarding the date issue, it didn't right with me either, but while
it worked i didn't really want to tinker with it. As you have already
noticed I don't particularly like Access, & am not all that good at
it;

I find it much easier to do things in SQL Server even MySQL, but a
new job has found me working with Access again until they migrate
(which is planned).

The intentions of the previous developer in comparing the Dates as
INTS
was to remove the fractional part of any given date.

Consequently 01/02/2006 9:00am & 01/02/2006 12:00pm would amount to
01/02/2006.

This article deals with the problem.
http://support.microsoft.com/kb/210276/

I have since changed the implementation:
AND
(DateValue(Start_Date) <= INT(Now())) AND (DateValue(End_Date) >=
INT(Now()))
If you have an index that includes those fields, I think you will find
that this will be much more efficient:

.... (Start_Date < Date()+1 and End_Date <= Date())

Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Jul 18 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: HKM | last post by:
Hello, I have a query engine that builds the SQL Query to obtain the recordSet. Following is an Exmaple Query that my QueryBuilder outputted ...
9
by: Dom Boyce | last post by:
Hi First up, I am using MS Access 2002. I have a database which records analyst rating changes for a list of companies on a daily basis....
22
by: Gerry Abbott | last post by:
Hi all, I having some confusing effects with recordsets in a recent project. I created several recordsets, each set with the same number of...
6
by: lenny | last post by:
Hi, I've been trying to use a Sub or Function in VBA to connect to a database, make a query and return the recordset that results from the...
3
by: Nathan Bloomfield | last post by:
Hi there, I am having difficulty with a piece of code which would work wonders for my application if only the error trapping worked properly. ...
2
by: Lyn | last post by:
Hi, I am opening a form in Continuous mode to list the records from a recordset created in the calling form. The recordset object is declared as...
13
by: Jan | last post by:
Hi I have a database that I use to keep track of the sales promotions that we send to companies. I normally send a mailing based on a subset...
2
by: ajspacemanspiff | last post by:
I currently have a solution that requires 2 sub queries, where each of them is convereted into a crosstab query and then I join the crosstab...
11
by: altreed | last post by:
Hi, I am new to ASP, HTML and iis. I have my asp code working so that I can retrieve my desired record from the database. I can place the...
5
by: Henrik | last post by:
The problem is (using MS Access 2003) I am unable to retrieve long strings (255 chars) from calculated fields through a recordset. The data takes...
1
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
Oralloy
by: Oralloy | last post by:
Hello Folks, I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA. My problem (spelled failure) is with the...
0
by: Carina712 | last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand....
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.