Creating sub-recordsets

G

Giles

How do I create a recordset from another?

e.g.
sSQL1="SELECT * FROM ThisTable"
rs1.open sSQL1,conn

sSQL2="Select * from (rs1?) WHERE name='fred' "
rs2.open sSQL2,conn

TIA
Giles
 
G

Giles

The first statement takes about 5 secs to execute. Didn't make myself v
clear - the 1st statement is full of conditions, to a Search database. The
second is to filter and order search results into various categories without
having to make the main trip again.
Giles
 
G

Giles

"Bob Barrows [MVP]" wrote
Use the recordset's Filter property.

Bob Barrows
PS. Avoid Selstar: http://www.aspfaq.com/show.asp?id=2096

Thanks Bob. I do avoid * where poss since joining this NG - almost as bad as
top (or bottom) posting! However, the article seems to suggest that if you
want all fields, it is better to explicitly name the lot. Is that right?
Does everyone do that?
Giles
 
B

Bob Barrows [MVP]

Giles said:
"Bob Barrows [MVP]" wrote

Thanks Bob. I do avoid * where poss since joining this NG - almost as
bad as top (or bottom) posting! However, the article seems to suggest
that if you want all fields, it is better to explicitly name the lot.

"seems to suggest"? I thought it was worded strongly enough that it would do
more than "seem to suggest" ,,, :)
Is that right?
Yes

Does everyone do that?

Everyone who :
a) knows the pitfalls of selstar
b) is not lazy
c) wants to reduce network traffic and the time connected to the database,
resulting in better performance and resource utilization

:)

Bob Barrows
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,579
Members
45,053
Latest member
BrodieSola

Latest Threads

Top