Thanks for the tip. I was able to mess with it for awhile and arrive at something...
<%
Dim arrAcronyms(), objConn, objRS, counter
Set objConn = Server.CreateObject("ADODB.Connection"

Set objRS = Server.CreateObject("ADODB.Recordset"

objConn.Open "dsn=DB;uid=;pwd="
sql = "SELECT * FROM Table"
' this script requires that you are using a dynamic cursor (a non-forward-only moving cursor so it
' can be stepped back through the recordset)
objRS.Open sql,objConn,3,3
' populate the contents of an array dynamically from the values stored in the DB
counter = 0
ReDim arrAcronyms(objRS.RecordCount-1)
Do While Not objRS.EOF
arrAcronyms(counter) = objRS(0).Value
counter = counter + 1
objRS.MoveNext
Loop
objRS.Close
%>
Thanks for your help!