Active Server Pages |
Home > ASP > |
Use OLEDB Instead of ODBCAnother area where you can see immediate improvement is the technique you use to connect to your database. Consider moving from ODBC to an OLEDB connection. If you are using an ODBC connection, you are probably using a System DSN or a File DSN to connect to your database. You can even use a DSNLess connection. You have a connection string that looks like one of the following:
Or
Instead of using ODBC, use OLEDB. OLEDB is Microsoft's COM-based interface to databases and other data sources. A full explanation of OLEDB is beyond scope for this little article, but you can find more details at Microsoft's Universal Data Access site . OLEDB is also the underlying technology on which ADO rests on. Your ADO calls from an ASP page are first sent to OLEDB before they make their way to the next layer below. If you use an ODBC data source to your database, consider the layers the request and data have to travel through: ASP - ADO - OLEDB - OLEDB Provider for ODBC - ODBC - Database Most commonly used databases, SQL Server and Access included, now provide OLEDB providers that allow you to access the database directly from the OLEDB layer. You effectively bypass the ODBC layer by making a call using the OLEDB provider for the database. If you use OLEDB instead of ODBC, your data request and the data travel through one less layer: ASP - ADO - OLEDB - OLEDB Provider for your database - Database The result: OLEDB turns out to be faster than ODBC for the same database. In fact, in test results published in Wrox Press' book ADO 2.0 Programmer's Reference, OLEDB connections outperformed ODBC connections when used with server side cursors (the default in ADO) against both SQL Server and Access. Generally, you can expect a 10 to 30% speed improvement simply by changing over to OLEDB. To use an OLEDB connection string with SQL Server, use the following as your connection string when you open the ADO Connection object:
If you are using Microsoft Access, use the following as your connection string when you open the ADO Connection object:
Remember to fill in the appropriate places within the connection strings before using it in your code. Here is a trick to quickly and easily generate your connection string if you already have the latest ADO or Microsoft Data Access Components (MDAC) installed on your machine.
Note: OLEDB is only marginally faster than ODBC if you are using a client-side cursor—a disconnected recordset. However, marginal is better than nothing! |