Skip to Main Content

ODP.NET

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

pooling - what are the default values if there are any?

52341Oct 19 2004 — edited Oct 19 2004
I am trying to implement connection pooling in my VB .net application. I am having trouble finding in the documentation what the following gets me.

If I don't give the pool min and other values what does pooling=true do? Are there default values assigned to the pool size and if so where are they documented?

What I want to do in enable pooling in my application, but it might be nice to know the default values.

Dim connection As New OracleConnection
Dim user As String = "username"
Dim password As String = "password"
Dim source As String = "box.whatever.com" connection.ConnectionString = "user id=" + user + ";password=" + password + ";data source=" + source + ";pooling=true;"
connection.Open()
connection.Close()
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 16 2004
Added on Oct 19 2004
1 comment
283 views