Using recordsets, and print#, you can scroll through the tables and write the records to a file.
you would create the recordset, open a file, and use something like:
rs.movefirst
do while not rs.eof and rs.bof
print# rs.field1 & "," & rs.field2....., hndOutputFile
rs.movenext
loop
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.