19
Fri, Apr
5 New Articles

TechTip: Native OLE DB vs. ODBC

Microsoft
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

They're the age-old questions: Paper or plastic? Boxers or briefs? OLE DB or ODBC? OK, maybe that last one needs some explanation. To access your iSeries database from a Windows-based client application, you have several options to choose from. Determining which of these is the best solution can be dizzying. I'll help you figure out which one is best for you, be it IBM's native OLE DB provider, an ODBC data source name (DSN), or an ODBC connection without DSN ("DSNless") .

IBMDA400

IBM introduced its OLE DB database provider with V3R1M3 of Client Access. Originally named "Project Lightning," this provider was designed to give software developers fast record-level access to the iSeries database. The concept behind OLE DB is basically to give a common interface to dissimilar data sources. This means that the same technique used to access an iSeries database can be used to access a Microsoft SQL Server database or an Oracle database.

OLE DB providers are accessed through ActiveX Data Objects (ADO). ADO acts as the programming interface to OLE DB. The early version of the IBMDA400 OLE DB provider only supported a subset of the functionality available through ADO. The RecordCount property of the Recordset object, for example, was not available. This property is used to determine the number of records contained within a recordset. The functionality has been greatly enhanced in recent versions of the IBMDA400 provider.

ODBC

When we talk about using ODBC with ADO, what we're actually talking about is using the Microsoft OLE DB provider for ODBC databases. There are two options for how to use an ODBC data source with ADO. The first option is to define an ODBC data source through the Windows ODBC control panel. This method is not usually preferred because it requires that the data source be configured on each client computer that would be using the ADO application. The second option is to create a DSNless ODBC. With this method, the connection is defined much as an OLE DB connection is defined, but with greater ADO object support. There is also a performance difference between these options, which I'll discuss later.

Making the Connection

These three methods use similar techniques to connect to a data source because ADO is used to access each database provider. The code below illustrates how to connect to a data source using the iSeries OLE DB provider using Visual Basic Scripting language (VBScript).

Set conn = CreateObject("ADODB.Connection")
Set rs = CreateObject("ADODB.Recordset")

conn.open "Provider=IBMDA400;User ID=user;Password=secret;" &  
                  "Data Source=192.168.0.1" 

rs.Open "SELECT * FROM QSYS2.SYSTABLES", conn

The key piece of this code is contained in the Open method of the connection object. The Provider parameter defines the OLE DB provider being used. The Data Source parameter identifies the iSeries' IP address. The User ID and Password parameters are self-explanatory. Below, you can see how this same piece of code would be defined using a DSNless connection.

Set conn = CreateObject("ADODB.Connection")
Set rs = CreateObject("ADODB.Recordset")

conn.open "DRIVER=iSeries Access ODBC Driver" & _ 
                 "UID=user; PWD=secret; System=192.168.0.1;"

rs.Open "SELECT * FROM QSYS2.SYSTABLES", conn

Notice that this example doesn't define the Provider parameter. This is because the default option here is to use the Microsoft OLE DB provider for ODBC databases. The same is true when you use an ODBC connection based on a defined ODBC DSN, as shown below.

Set conn = CreateObject("ADODB.Connection")
Set rs = CreateObject("ADODB.Recordset")

conn.open "DSN=AS400;UID=user; PWD=secret;"

rs.Open "SELECT * FROM QSYS2.SYSTABLES", conn

As I mentioned, this option assumes that you have defined an ODBC data source using the ODBC control panel icon. The advantage to this method is that the application can't be used on a machine that doesn't have the ODBC data source defined. The disadvantage is that the application can't be used on a machine that doesn't have the ODBC data source defined. While this seems a bit contradictory, the fact is that this method can be an advantage if you want to limit access to an application, but it's definitely a disadvantage in that each time an application is used on a different machine, the DSN must be configured on that machine first. The key deciding factor may ultimately be performance.

It's All Timing

To accurately examine how these alternatives perform, you need to test each option under similar circumstances. For the first test, make a connection from a code module within a Microsoft Access database. A version of this database can be downloaded from this Web site. Use the module code for the database, shown below, to test the speed of the ADO provider.

Option Compare Database

Sub ADOTest(ConnectionString As String, RecordSource As String)

Dim objConn As New ADODB.Connection
Dim objRs As New ADODB.Recordset

Rec = 0
strTime = Now()
Debug.Print "Start: " & strTime & Chr(13)
objConn.Open ConnectionString

objRs.Open RecordSource, objConn

Do Until objRs.EOF
objRs.MoveNext
Rec = Rec + 1
DoEvents
Loop
endTime = Now()
Debug.Print "End: " & endTime & Chr(13)

elapsed = DateDiff("s", strTime, endTime)
Debug.Print Rec & " records in " & elapsed; " seconds." & Chr(13)
Debug.Print (Rec / elapsed) & " records per second." & Chr(13)

objRs.Close
objConn.Close

End Sub

This simple Microsoft Access subroutine allows you to test multiple providers and SQL statements to determine which provider performs best under each circumstance. The ADOTest subroutine accepts two parameters: The first is the exact ConnectionString property required by the ADO Connection object; the second is the SQL statement you want to use as the record source for your recordset. This subroutine saves the current time to the variable strTime and then writes this value out to the Access debug window. Next, the routine establishes a connection to the data source through the object objConn. Once a connection is established, the recordset object objRs is opened using the supplied SQL statement. The routine then reads through all of the records in the recordset, while using the variable Rec as a counter of total records read. When the EOF condition occurs, the current time is saved again to the variable endTime, which is then used along with strTime and Rec to determine elapsed time in seconds and records read per second. You can test this routine by typing the following into the Visual Basic for Applications Immediate window within Microsoft Access:

Call ADOTest("Driver=iSeries Access ODBC Driver; System=192.168.0.1; 

UID=user; PWD=secret;","SELECT * FROM QSYS2.SYSTABLES")

Replace the System, UID, and PWD parameters with your iSeries IP address and a valid user ID and password for your iSeries.

The above example would run the test using the iSeries Access ODBC driver using a DSNless connection. To execute this same test using an OLE DB connection, use the following command:

Call ADOTest("Provider=IBMDA400; Data Source =192.168.0.1; User ID=user; 

Password=secret;","SELECT * FROM QSYS2.SYSTABLES")

Again, you need to replace the Data Source, User ID, and Password parameters with valid values for your system.

Finally, the code shown below would execute the test using the defined ODBC data source AS400.

Call ADOTest("DSN=AS400;UID=user; PWD=secret","SELECT * FROM QSYS2.SYSTABLES")

When you execute each of these commands, the system will return test results that indicate the start and end times, total elapsed time, number of records read, and records read per second. The table below shows comparative data returned by my system running V5R2.

Connection Type
Total Elapsed Time
Records Read
Records Per Second
DSNless ODBC
25 Seconds
32884
1315.36
ODBC DSN
26 Seconds
32885
1264.80
IBM OLE DB Provider
59 Seconds
32884
557.35

As this table shows, The DSNless ODBC connection exhibits the best performance, having read 1,315 records per second, while the performance of the OLE DB provider was worst, having taken more than twice as long to read the same number of records.

Wrapping It All Up

As you've seen here, the differences in defining each of the possible ADO providers are small, but the performance differences can be huge. And while an ODBC connection can be defined using an ODBC DSN, the DSNless connection actually offers slightly better performance--without the additional configuration requirement.

Mike Faust is IT Manager for The Lehigh Group in Macungie, Pennsylvania. Mike is also the author of the books The iSeries and AS/400 Programmer's Guide to Cool Things and Active Server Pages Primer from MC Press. You can contact Mike at This email address is being protected from spambots. You need JavaScript enabled to view it..



Mike Faust

Mike Faust is a senior consultant/analyst for Retail Technologies Corporation in Orlando, Florida. Mike is also the author of the books Active Server Pages Primer, The iSeries and AS/400 Programmer's Guide to Cool Things, JavaScript for the Business Developer, and SQL Built-in Functions and Stored Procedures. You can contact Mike at This email address is being protected from spambots. You need JavaScript enabled to view it..


MC Press books written by Mike Faust available now on the MC Press Bookstore.

Active Server Pages Primer Active Server Pages Primer
Learn how to make the most of ASP while creating a fully functional ASP "shopping cart" application.
List Price $79.00

Now On Sale

JavaScript for the Business Developer JavaScript for the Business Developer
Learn how JavaScript can help you create dynamic business applications with Web browser interfaces.
List Price $44.95

Now On Sale

SQL Built-in Functions and Stored Procedures SQL Built-in Functions and Stored Procedures
Unleash the full power of SQL with these highly useful tools.
List Price $49.95

Now On Sale

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: