store SELECT results in VB?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I want to write a VB script that performs SELECT queries on a database and
then stores the results in a variable so I can manipulate them later. Is this
possible? I have not been able to find anything like this in the Help or
discussions. I don't know VB very well but I think if I got past this
stumbling block I'd be OK after that.

Thanks very much in advance,
bd
 
dim rs as dao.recordset

set rs = currentdb.OpenRecordset("TableName")
 

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

Back
Top