Articles
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Thursday, February 09, 2012
Home
Articles & Samples
Dev Search
Sample Chapters
Link to US
Contact
Search Directory
Applications
Articles & Samples
Components
Community
Database
Developer Sites
Downloads
Hosting Services
Introduction
Knowledge Base
Sample Chapters
WebCasts
ASP Directory
Applications
Articles & Samples
Components
Developer Sites
Knowledge Base
Sample Chapters
WebCasts
XML Directory
Applications
Articles & Samples
Developer Sites
Error, Bugs & Fixes
Downloads
Introduction
Knowledge Base
Sample Chapters
WebCasts

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Database > ActiveX Data Object
Search
DevASP

What's New
What's Hot

DataLink Dialog from ASP       
Total Hits: 631  |  Today: 0 Author: Aj Horus.       Rating:  
Read Reviews | Write Review |              Your Rating: 

This ActiveX control allows the user to build a connection string from the data providers listed on a client machine. The ActiveX invokes the standard DataLink dialog that lists all the data providers and the parameters needed for a valid connection string. This dialog also tests the connection....

Stream Object (ADO version 2.5)       
Total Hits: 610  |  Today: 0 Author: www.w3schools.com       Rating:  
Read Reviews | Write Review |              Your Rating: 

The ADO Stream Object is used to read, write, and manage a stream of binary data or text.A Stream object can be obtained in three ways:From a URL pointing to a document, a folder, or a Record object By instantiating a Stream object to store data for your application By opening the default Stream object associated with a Record object...

ADO Stored Procedures       
Total Hits: 522  |  Today: 0 Author: Steven Smith       Rating:  
Read Reviews | Write Review |              Your Rating: 

This article covers simply HOW to use stored procedures with ADO. WHY you should do so is covered in another article, but suffice to say that you should. SQL code in your ASP page is BAD. Remember that and you'll do fine. Now let's look at some code....

ASP Database Fundamentals (Part 2)       
Total Hits: 277  |  Today: 0 Author: Rich Smith       Rating:  
Read Reviews | Write Review |              Your Rating: 

In part 1 of this series, we had an introduction to ADO. We learned about the different methods of making a connection, and how to manage the connection object. Now, continuing along the path of enlightenment, we will learn how to extract data from a database using recordsets. What is a recordset? An ADO recordset object is used to hold a set of records that belong to a database table or tables. Like any relational database, the recordset object consists of records and columns. In the world of A...

ADO.asp       
Total Hits: 409  |  Today: 0 Author: Jon Davis       Rating:  
Read Reviews | Write Review |              Your Rating: 

This is an essential file I use for all basic ADO methods. It makes SQL queries very easy, all you need to do is set up global.asa with the appropriate DSN string...

ASP/VBS, ADO and DBF file database connection       
Total Hits: 2742  |  Today: 0 Author: Antonin Foller       Rating:  
Read Reviews | Write Review |              Your Rating: 

Short introduction to work with DBF files/databases in ASP/VBS/WSH envinronment. Work with DBF using Microsoft.Jet.OLEDB.4.0 provider....

Open MDB files on remote computer       
Total Hits: 1098  |  Today: 0 Author: Antonin Foller       Rating:  
Read Reviews | Write Review |              Your Rating: 

Two ways (by ADO/Jet OLEDB and DAO) to open MDB database on shared disk from remote computer. The code avoids 'cannot open the file' error from ODBC Microsoft Access Driver....

ATL COM and ADO        
Total Hits: 843  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

ADO stands for ActiveX Data Object. ADO provides an object-oriented programming interface for accessing a data source using the OLE DB data provider. It is the succesor to DAO and RDO object models and combines the best features DAO and RDO. Programming OLE DB in C++ is easy. However, for languages like Visual Basic, that do not support pointers and other C++ features, implementing OLE DB is difficult. This is where ADO really shines. ADO is an high level interface to OLE DB that is based on COM...

ActiveX Data Objects (ADO)       
Total Hits: 1785  |  Today: 0 Author: Khalifa Ahmed       Rating:  
Read Reviews | Write Review |              Your Rating: 

These objects present an interface in the form of properties and methods that can be queried and manipulated. ADO was specifically developed to be small, lightweight, fast, and feature complete – everything you need when you are programming either for the database applications or the Internet....

Setting Up and Using OraSession to Manage Your Oracle Database Objects       
Total Hits: 416  |  Today: 0 Author: Nannette Thacker       Rating:  
Read Reviews | Write Review |              Your Rating: 

Most ASP developers are familiar with data connections using ActiveX Data Objects (ADO). However, Oracle provides the OraSession object to manage collections of OraConnection, OraDatabase, and OraDynaset objects used within your application....

Using ADO with MS Access 97        
Total Hits: 1220  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Adoacc.exe Demonstrates Using ADO with MS Access 97.Adoacc.exe is a self-extracting compressed file containing sample code that demonstrates how to use ActiveX Data Objects (ADO) with Microsoft Access 97. The sample code may be converted to use Microsoft Access 2000....

Support WebCast: CursorLocation and CursorType of the ADO Recordset       
Total Hits: 1225  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

November 14, 2001

During this presentation, we will talk about the CursorLocation and the CursorType properties of the ADO Recordset object. We will also discuss how these properties affect the functionality of the ADO Recordset.

...

Use the Correct ASP (ADO) Syntax to Enable Connection Pooling for Best SQL Server Performance       
Total Hits: 1913  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

There is much confusion about how to actually implement connection pooling in VB/VBScript code. In this article I have actually tested various ASP syntax variations and verified the results when using connection pooling. To preface - here are some highlights and some recent findings: Setting connections to "Nothing" in ASP does NOT affect connection pooling - only closing or not closing the connections will affect it if you are using the same connection string. It is recommended with the cu.....

Calling Parameterised Stored Procedures with ADO       
Total Hits: 5807  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

ADO provides a range of ways to call parameterised stored procedures. Understanding these various methods will help you to troubleshoot misbehaving procs, optimise performance and cut down the amount of code you need to write (but sadly, not all at onc...

HOWTO: Use ADO to Access Objects Through an ADSI LDAP Provider (Q187529)       
Total Hits: 5316  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

The Active Directory Service Interfaces (ADSI) Lightweight Directory Access Protocol (LDAP) provider implements OLE DB interfaces that allow you to use ActiveX Data Objects (ADO) to access objects in LDAP compliant directories. You must create an ADO connection object and set its Provider property to "ADsDSOObject". You can specify any string, including "", as the connection string (first argument) of the ADO connection object's open method....

HOWTO: Query and Update Excel Data Using ADO From ASP       
Total Hits: 7655  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

This article demonstrates how to query and update information in an Excel spreadsheet using ActiveX Data Objects (ADO) from an Active Server Page. The article also discusses the limitations associated with this type of application. IMPORTANT: Though ASP/ADO applications support multi-user access, an Excel spreadsheet does not. Therefore, this method of querying and updating information does not support multi-user concurrent access....

HOWTO: Open ADO Connection and Recordset Objects (Q168336)       
Total Hits: 2403  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

ActiveX Data Objects (ADO) offers several ways to open both the Connection and Recordset objects. This article presents sample code for several common techniques for each object....

A Beginner's Guide to Data Access Using ADO and ASP       
Total Hits: 2118  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

An easy to follow guide on using ADO in Active Server Pages, including a sample database and a working ASP example....

How Do I Use the Connection Object in ADO?       
Total Hits: 1287  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

A Connection object represents a physical connection to a data store. To create a Connection object, you will supply the name of either an ODBC data store or an OLE DB provider. When you open the Connection object, you attempt to connect to the data store. The State property of the Connection object tells you whether you succeeded or failed. You can send SQL statements or run stored procedures by using the Execute method of the Connection object. If the command you send to the data store returns...

ActiveX Data Objects (ADO) General Questions       
Total Hits: 1118  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Some general question about ActiveX Data Objects (ADO)from Microsoft.com...


DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com