If you want to do it in VB, create a recordset and use the following SQL
SELECT * FROM
then loop through
rs.movefirst
while not rs.eof
output_line=""
for x=0 to RS.item.count-1
output_line=output_line & chr(34) & rs.item(x).value & iif(x<>rs.item.count-1,chr(34),""
next x
print #ofile, output_line
wend
do this for each table in dB
rgds
Mike
email me offline if you want further help
michael.toye@bmw.co.uk
oops! the line in the for loop should be
output_line=output_line & chr(34) & rs.item(x).value & chr(34) & iif(x<>rs.item.count-1,",",""
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.