Previous page Next page Bottom Top One level up Home

ADO

ADO.NET (28)
Books (2)

Webpages concerning "ADO"

This article presents some frequently asked questions about programming ActiveX Data Objects (ADO). Q. What are the ActiveX Data Objects (ADO)? A. ActiveX Data Objects are a language-neutral object model that expose data raised by an underlying...
http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q183606&
Keywords:
kbinfo, kbdatabase, kbfaq, kbarttypeinf, KB183606

http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q183606&

ADO at DataDirect. Your source for OLEDB, OLEDB drivers, OLEDB Oracle and ADO downloads
http://www.datadirect.com/products/ado/
Keywords:
ado, oledb, oledb driver, oledb oracle, ado download, ado product, ole db, microsoft ado, ado connection, ado access, ado database, ole db driver, oledb provider, ole db provider, oracle ado, ado, and, sql, server, microsoft ole db, ado provider, ado and xml, microsoft oledb, ole db oracle, informix oledb, microsoft, ole, db, provider, ado connection string, sybase ado

http://www.datadirect.com/products/ado/

ADO Data Objects
http://www.lqnet.com/ADO/ADO.asp
Keywords:
ADO, ADO Data Manipulation, Active Data Objects

http://www.lqnet.com/ADO/ADO.asp

Data Access and Storage Developer Center
http://www.microsoft.com/data/ado/prodinfo.htm

http://www.microsoft.com/data/ado/prodinfo.htm

Database Programming using ADO.NET with C#
http://www.c-sharpcorner.com/Database.asp
Keywords:
ADO, C#, .NET, ADO.NET, Database Programming, SQL, Oracle, Stored Procedures

http://www.c-sharpcorner.com/Database.asp

Award-winning web developers' resource: over 3000 pages of quick reference guides, tutorials, knowledge base articles, Ask DevGuru, useful products.
http://www.devguru.com/Technologies/ado/quickref/ado_intro.html
Keywords:
devguru, asp, active server pages, vbscript, javascript, ecmascript, jscript, html, xhtml, .net, css, cascading style sheets, stylesheets, jet sql, transact sql, t-sql, wsh, windows script host, ado, activex data objects, rds, remote data services, wml, wireless markup language, wmlscript, xml, extensible markup language, xsl, xslt, extensible stylesheet language, dom, asp+, asp.net, ...

http://www.devguru.com/Technologies/ado/quickref/ado_intro.html

Microsoft® ActiveX® Data Objects (ADO) is a data access interface used to communicate with OLE DB-compliant data sources, such as Microsoft SQL Server™ 2000. Data consumer applications can use ADO to connect to, retrieve, manipulate, and
http://msdn.microsoft.com/library/en-us/adosql/adoprg01_1kwv.asp

http://msdn.microsoft.com/library/en-us/adosql/adoprg01_1kwv.asp

Various SQL database connection strings and database connection scrpting examples. Looking for the correct databse connection string syntax? Look no further we got them all! This reference contains connection strings for many different databases, datasources and files, via OLE DB, ODBC, SQL Server .NET, OLE DB .NET, etc...
http://www.sqlstrings.com
Keywords:
connection, string, connection, strings, ADO, ADO.NET, ODBC, OLEDB, DSN, UDL, Jet, MS, Access, SQL, SQL, Server, Oracle, MySQL, Interbase, Sybase, recordset, command, connection, database, cursor, stored, procedure, open, execute

http://www.sqlstrings.com

http://support.microsoft.com/default.aspx?scid=/Support/ActiveServer/faq/data/adofaq.asp

http://support.microsoft.com/default.aspx?scid=/Support/ActiveServer/faq/data/adofaq.asp

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ado270/htm/adostartpage1.asp

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ado270/htm/adostartpage1.asp

http://msdn.microsoft.com/library/default.asp?url=/code/list/ado.asp

http://msdn.microsoft.com/library/default.asp?url=/code/list/ado.asp

http://www.15seconds.com/focus/Data\\%20Access.htm

http://www.15seconds.com/focus/Data\\%20Access.htm

http://www.able-consulting.com/RDS_Faq.htm

http://www.able-consulting.com/RDS_Faq.htm

http://www.able-consulting.com/ADOX_Faq.htm

http://www.able-consulting.com/ADOX_Faq.htm

http://www.able-consulting.com/ADODataTypeEnum.htm

http://www.able-consulting.com/ADODataTypeEnum.htm

http://www.able-consulting.com/ADO_Conn.htm

http://www.able-consulting.com/ADO_Conn.htm

http://www.able-consulting.com/ADO_Faq.htm

http://www.able-consulting.com/ADO_Faq.htm

Help building the largest human-edited directory of the web
Suggest URL - Open Directory Project - Become an editor
directopedia.org uses links and structure from dmoz Open Directory Project.
The contents has been generating using technology developed by scientec.

Wikipedia-Article "ADO"

Microsoft ADO (ActiveX Data Objects) is a Component object model object for accessing data sources. It provides a layer between programming languages and OLE DB (a means of accessing data stores, whether they be databases or otherwise, in a uniform manner), which allows a developer to write programs which access data, without knowing how the database is implemented. You must be aware of your database for connection only. No knowledge of SQL is required to access a database when using ADO, although one can use ADO to execute arbitrary SQL commands. The disadvantage of this is that this introduces a dependency upon the database.

It is positioned as a successor to Microsoft's earlier object layers for accessing data sources, including RDO (Remote Data Objects) and DAO (Data Access Objects). ADO was introduced by Microsoft in the winter of 1996.

ADO consists of several top-level objects:

  • Connection (represents the connection to the database)
  • Recordset (represents a set of database records)
  • Command (represents a SQL command)
  • Record (represents a set of data, typically from a source other than a database)
  • Stream (represents a stream of data, as from a text file or web page)
  • Error (stores errors)
  • Field (represents a database field)
  • Parameter (represents a SQL parameter)
  • Property (stores information about objects)

ADO component is used in conjunction with a high-level language, such as VBScript in an Active Server Pages (ASP) environment, or Visual Basic. Even Delphi, a development environment from Microsoft rival Borland Coporation, now allows the use of ADO to access various databases.

In the newer programming framework of .NET, Microsoft also presented an upgraded version of ADO called ADO.NET. Its object structure is quite different from that of traditional ADO. Traditional ADO is still very popular, and is often perceived as being more mature.

Here is an ASP example using ADO to select the "Name" field, from a table called "Phonebook", where a "PhoneNumber" was equal to "555-5555".

dim myconnection, myrecordset, name
set myconnection = server.createobject("ADODB.Connection")
set myrecordset = server.createobject("ADODB.Recordset")
     myconnection.open mydatasource
myrecordset.open "Phonebook", myconnection
myrecordset.find "PhoneNumber = '555-5555'"
name = myrecordset.fields.item("Name")
myrecordset.closeset myrecordset = nothing
set myconnection = nothing

This is equivalent to the following ASP code, which uses plain SQL, instead of the functionality of the Recordset object:

dim myconnection, myrecordset, name
set myconnection = server.createobject("ADODB.connection")
myconnection.open mydatasource
set myrecordset = myconnection.execute("SELECT Name FROM Phonebook WHERE PhoneNumber = '555-5555'")
name = myrecordset(0) 
myrecordset.closeset myrecordset = nothing
set myconnection = nothing

External links

This article is based on the article "ADO" from Wikipedia - the free encyclopedia created and edited by online user community. This article is distributed under the terms of GNU Free Documentation License. Here you find the list of authors of this article. The article can only edited within Wikipedia. Edit this article in Wikipedia.