connection pooling for MS Access using OleDBConnection

  • Thread starter Thread starter fniles
  • Start date Start date
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()
 
Please see the answer Bill gave you when you repeated your question.

Will you be so kind not to do that, .

Cor
 
Back
Top