B
Brian
I am very familiar with connecting to an Access database and manipulating
data with DAO. Something like:
dim db as database
dim rst as recordset
set db=currentdb()
set rst=db.openrecordset("Contacts", dbOpenDynaset)
with rst
.findfirst "[ContactID]=12345"
and so on...you get the point.
I am now writing a database with an Access 2007 front end and SQL Server
2005 backend. The tables are linked into Access using a .dsn file through
the ODBC connector. So my question is...how do I duplicate the functionality
that is shown above using ADO?
Thanks
data with DAO. Something like:
dim db as database
dim rst as recordset
set db=currentdb()
set rst=db.openrecordset("Contacts", dbOpenDynaset)
with rst
.findfirst "[ContactID]=12345"
and so on...you get the point.
I am now writing a database with an Access 2007 front end and SQL Server
2005 backend. The tables are linked into Access using a .dsn file through
the ODBC connector. So my question is...how do I duplicate the functionality
that is shown above using ADO?
Thanks