|
No it's dead simple to the end user.
You don't need to get involved in the class file at all. It's one of the biggest benefits of Objects. All you need to know is how to create the object (set objName = new "ClassName"), put values in and get other values out.
It works in the same way as ADO does.
You (as the end user) don't need to know how the driver "talks" to the database, all you need is know is how to tell it where the DB is (objConn.ConnectionString) how to open it (objConn.Open) and how to get values out (objRS.Fields("name") ).
Behind all that is some very complicated processing happening, without you even being aware of what is being done.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
|