pooling - what are the default values if there are any?
52341Oct 19 2004 — edited Oct 19 2004I 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()