Articles   Dev Forums   Personalize   Favorites   Member Login   ASP Hosting      Active Users:  90
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Friday, May 09, 2008
Home
Articles & Samples
ASP Hosting
Dev Search
Dev Forum
Add Your Articles
Add a Listing
Sample Chapters
Directory Feed
Link to US
Contact

Search Directory
Applications
Articles & Samples
Components
Community
Database
Developer Sites
Downloads
Hosting Services
Introduction
Knowledge Base
Sample Chapters
WebCasts

ESET
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

Recordset Paging with ADO 2.0       
Total Hits: 461  |  Today: 2 Author: Michael Qualls       Rating:  
Read Reviews | Write Review |              Your Rating: 

Recordset paging is the process of breaking up a recordset into multiple "pages" of information for display. This tutorial shows you how to implement this on your site ....

ATL COM and ADO        
Total Hits: 640  |  Today: 1       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: 1578  |  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....

Use the Correct ASP (ADO) Syntax to Enable Connection Pooling for Best SQL Server Performance       
Total Hits: 1657  |  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: 5522  |  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: Query and Update Excel Data Using ADO From ASP       
Total Hits: 7429  |  Today: 1       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....

Q271908 INFO: MDAC Version 2.6 Does Not Contain Jet       
Total Hits: 876  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

Starting with Microsoft Data Access Components (MDAC) version 2.6, MDAC no longer contains Jet components. In other words, MDAC version 2.6 and 2.7 do not include Microsoft Jet, Microsoft Jet OLE DB Provider, and the ODBC Desktop Database Drivers.

...

A Beginner's Guide to Data Access Using ADO and ASP       
Total Hits: 1963  |  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: 1166  |  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...

INFO: Programmer's Guide to Using ADO in Active Server Pages (Q172927)       
Total Hits: 592  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

This article presents information that will be useful to anyone wanting to take advantage of the ActiveX Data Objects within Active Server Pages (ASP). The following topics are covered: How to find ADO Knowledge Base Articles, ADO Resources/Points of Information...

DataLink Dialog from ASP       
Total Hits: 254  |  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....

ADO Stored Procedures       
Total Hits: 298  |  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/VBS, ADO and DBF file database connection       
Total Hits: 2404  |  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: 923  |  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....

Using ADO with MS Access 97        
Total Hits: 1088  |  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: 1103  |  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.

...

HOWTO: Access and Modify SQL Server BLOB Data by Using the ADO Stream Object (Q258038)       
Total Hits: 4310  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

The Stream object introduced in ActiveX Data Objects (ADO) 2.5 can be used to greatly simplify the code that needs to be written to access and modify Binary Large Object (BLOB) data in a SQL Server Database. The previous versions of ADO [ 2.0, 2.1, and 2.1 SP2 ] required careful usage of the GetChunk and AppendChunk methods of the Field Object to read and write BLOB data in fixed-size chunks from and to a BLOB column. An alternative to this method now exists with the advent of ADO 2.5. This arti...

HOWTO: Use ADO to Access Objects Through an ADSI LDAP Provider (Q187529)       
Total Hits: 5081  |  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: Open ADO Connection and Recordset Objects (Q168336)       
Total Hits: 2263  |  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....

Record Navigation System beyond ADO       
Total Hits: 692  |  Today: 0       Rating:  
Read Reviews | Write Review |              Your Rating: 

This is a follow up article for Record Navigation System using the ADO Recordset. The previous article talks about the features of ADO and how to use ADO to build page navigation. But, there is another, even better way out there to achieve the same kind of functionality, which I will show you in this article....


1  2  3  Next >> 


DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com