Open a database and read the records in it.
Open a database and read the records in it.
Rate Open a database and read the records in it.
(1(1 Vote))
past the following code
dim db as database
dim rs ad recordset
set db=opendatabase("database.mdb")
set rs=db.openrecordset("select * from tablename")
while not rs.Eof
debug.print rs(0).value
and so on .... for another data fields.
rs.movenext
wend
rs.close
db.close
Open a database and read the records in it. Comments
No comments yet — be the first to post one!
Post a Comment