connection pooling for MS Access using OleDBConnection

F

fniles

To do a connection pooling for MS Access using OleDBConnection, do I need to
include OLE DB Services=-1 in the connection string ?
What will the connection string be for connection pooling for MS Access
using OleDBConnection ?
Thank you.

ConnectionDemoOLE = New OleDb.OleDbConnection
sPath = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & sDBPath & ";OLE DB
Services=-1"
With ConnectionDemoOLE
.ConnectionString = sPath
.Open()
 
C

Cor Ligthert [MVP]

Please see the answer Bill gave you when you repeated your question.

Will you be so kind not to do that, .

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top