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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. pwherman2

    queries within loops

    You could try doing your loop and load the results into an array: Dim arrNew for i = 1 to 12 strSQL = "SELECT * from myTable WHERE some condition" set rst = dbConnection.execute(strSQL) arrNew[i] = rst next or use a 2 dimensional array if you are returning more than one...

Part and Inventory Search

Back
Top