Probeer dit, het zou elk veld in de recordset aan de invoerreeks moeten toevoegen. Als u alleen een specifieke waarde van elk record wilt, kunt u dit doen
input = input & rs.Fields.Item("FIeld_Name")
In plaats van door elk veld te lussen.
connectionString = "DRIVER={Microsoft ODBC for Oracle};SERVER=oracle_server;User Id=user;Password=password;"
Set connection = CreateObject("ADODB.Connection")
connection.Open connectionString
Set rs = connection.Execute("select * from dual")
input = ""
Do Until rs.EOF
for i = 0 To rs.Fields.Count - 1
input = input & rs.Fields.Item(i) & "|"
Next
input = input & VBNewLine
rs.MoveNext
Loop
MsgBox input
Set connection = Nothing
Set rs = Nothing