Microsoft Knowledge Base Email Alertz

(166083) - This article describes how to enable ODBC connection pooling in an OLE DB application.

Search KbAlertz

Advanced Search

Receive Microsoft Knowledge Base articles by E-Mail?

Every night we scan the Microsoft Knowledge Base. If technologies you're interested in are updated, we'll send you an e-mail. You only get one e-mail a day, and only when new articles are added.

Click here to create a
FREE account
Already have an account?
[Click here to Login]











Microsoft Knowledge Base Article

This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks

Article ID: 166083 - Last Review: March 18, 2004 - Revision: 2.0

INFO: How to Enable Connection Pooling in an OLE DB Application

This article was previously published under Q166083

SUMMARY

This article describes how to enable ODBC connection pooling in an OLE DB application.

MORE INFORMATION

An OLE DB application can enable ODBC connection pooling if the OLE DB application is using the OLE DB provider for ODBC. The OLE DB application that uses the ODBC provider is like an ODBC application because the ODBC provider internally calls the ODBC API to perform data manipulation.

The ODBC provider does not expose any property to allow an OLE DB application to enable connection pooling. In order to enable connection pooling, the OLE DB application needs to use the ODBC API to enable connection pooling before using the ODBC provider. Because connection pooling is a process-level attribute, any subsequent connection made through the ODBC provider will be using connection pooling.

The following code demonstrates how an OLE DB application can enable connection pooling:
   SQLAllocEnv(&henv);

   //enable connection pooling
      SQLSetEnvAttr(
         NULL,
         SQL_ATTR_CONNECTION_POOLING,
         (SQLPOINTER)SQL_CP_ONE_PER_DRIVER,
         SQL_IS_INTEGER);

   SQLAllocConnect(henv,&hdbc);

   // connect to the OLE DB ODBC provider
         OleInitialize(NULL);
...
      hr = CoCreateInstance( CLSID_MSDASQL, NULL, CLSCTX_INPROC_SERVER,
         IID_IDBInitialize, (void **)&pIDBInit );
...
      CoUninitialize();
   //finish OLE DB stuff

     SQLFreeConnect(hdbc);
     SQLFreeEnv(henv);

   //disable connection pooling
      SQLSetEnvAttr(
         NULL,  // make process level cursor pooling
         SQL_ATTR_CONNECTION_POOLING,
         (SQLPOINTER)SQL_CP_OFF,
         SQL_IS_INTEGER);
				

APPLIES TO
  • Microsoft Open Database Connectivity 3.0
  • Microsoft OLE DB 1.1
Keywords: 
kbhowto kbprogramming KB166083
Retired KB ArticleRetired KB Content Disclaimer
This article was written about products for which Microsoft no longer offers support. Therefore, this article is offered "as is" and will no longer be updated.
       

Community Feedback System

Very often, it takes hours to solve a problem. Very often, you've looked high and low, and have tried a lot of solutions. When you finally found it, chances are, it was because someone else helped you. Here's your chance to give back. Use our community feedback tool to let others know what worked for you and what didn't.

Please also understand that the community feedback system is not warranted to be correct, it's simply a system that we've built to let people try and help each other. If something in a feedback response doesn't make sense to you, or you're not comfortable making changes that the feedback talks about (like registry edits), please consult a professional.

Thank you for using kbAlertz.com Feedback System.

-- Scott Cate