hmm, i'm getting this error now....
_____________________
Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
[Microsoft][ODBC Microsoft Access Driver] Characters found after end of SQL statement.
/newsroom/mapmonthly/index
__________________________
line 66 is:
Set rsData = getDataCmd.Execute
http://www.morrisseygoodal
Main Topics
Browse All Topics





by: saoirse1916Posted on 2009-07-28 at 12:29:48ID: 24964249
Rather than doing multiple recordsets and connections to the database I'd put all the SELECT statements into a single connection and jump through the recordsets using rs.NextRecordset(). Then save the data to arrays rather than keeping all those recordsets open. Something like this:
Select allOpen in new window