Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

ADO connection object: Difference between revisions

From MoodleDocs
(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...")
 
No edit summary
 
Line 1: Line 1:
{{obsolete}}
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.
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.
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.

Latest revision as of 12:06, 10 November 2013

Warning: This page is no longer in use. The information contained on the page should NOT be seen as relevant or reliable.

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.