Note:

This site is no longer used and is in read-only mode. Instead please go to our new Moodle Developer Resource site.

ADO connection object

From MoodleDocs
Revision as of 07:52, 16 June 2011 by Michael de Raadt (talk | contribs) (Created page with "The '''ADO Connection Object''' is used to create an '''open connection to a data source'''. Through this connection, you can access and manipulate a database. If you want to ac...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The ADO Connection Object is used to create an open connection to a data source. Through this connection, you can access and manipulate a database.

If you want to access a database multiple times, you should establish a connection using the Connection object. You can also make a connection to a database by passing a connection string via a Command or Recordset object. However, this type of connection is only good for one specific, single query.