I'm using the getrows method to return an array. No matter which table I point to, I only load half of the records (regardless of total record count). Code chunk below:
Please advise. Regards, Krickles
Code:
Set objRec = server.CreateObject("ADODB.Recordset")
objRec.Open "select * from division_lu", objConn
Dim arrResults, intLastCol, intLastRow, intCol, intRow
arrResults = objRec.GetRows
intLastCol = UBound(arrResults)
intLastRow = UBound(arrResults)
For intRow = 0 to intLastCol
For intCol = 0 to intLastRow
Response.Write arrResults(intCol, intRow) & " "
Next
Response.Write ("<BR>")
Next