Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim rsadoDB as new adodb.recordset
'this assumes cn connection already open
set rsadodb = cn.execute "Select field1, field2 from mytable"
'return the column name in fields (should be field1 and field2
dim i as integer
for i = 0 to rsadodb.fields.count
debug.print rsadodb.fields(i).name
next i
[green]
'return the column name in fields (should be field1 and field2[/green]
dim i as integer
for i = 0 to rsadodb.fields.count [red][b]- 1[/b][/red]
debug.print rsadodb.fields(i).name
next i