Content deleted Content added
→See also: ce, add MSDAIPP |
→See also: Add wikilink to ActiveX |
||
(4 intermediate revisions by 4 users not shown) | |||
Line 68:
=== ASP example ===
Here is an [[Active Server Pages|ASP]] example using ADO to select the "Name" field, from a table called "Phonebook", where a "PhoneNumber" was equal to "555-5555".
<syntaxhighlight lang=
dim myconnection, myrecordset, name
set myconnection = server.createobject("ADODB.Connection")
Line 86:
This is equivalent to the following ASP code, which uses plain SQL instead of the functionality of the Recordset object:
<syntaxhighlight lang=
dim myconnection, myrecordset, name
set myconnection = server.createobject("ADODB.connection")
Line 103:
* [[ADO.NET]]
* [[Comparison of ADO and ADO.NET]]
* [[ActiveX]]
* [[MSDAIPP]]
Line 114 ⟶ 115:
{{Microsoft APIs}}
{{Authority control}}
{{DEFAULTSORT:Activex Data Objects}}
|