Link to home
Start Free TrialLog in
Avatar of chee68
chee68

asked on

Open a Recordset

If i want to open a recordset,  which way works better in terms of performance, maintenance, accuracy and ease of programming

method 1
1. use data control

method 2
1.  open the recordset manually;for example
Dim MyRS as recordset
set MyRS = mydb.openrecordset("Table1")

the recordset record will be updated by user operation.

Thanks

chee
Avatar of Edward98
Edward98

Use method 2 it gives you more control when you use DAO.

hi edward98,
just to know why, can u please give more details, of why this is so.

alok.
Avatar of chee68

ASKER

Yes, i would like to know the reason behind as well.
Thanks

chee

you can buy commercial performance tools.  NuMega and Rational both make them, though rational's only works on NT.
ASKER CERTIFIED SOLUTION
Avatar of bja1
bja1

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of chee68

ASKER

Thanks