35 lines
928 B
HTML
35 lines
928 B
HTML
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="..\styles.css">
|
|
</head>
|
|
<body>
|
|
<img src="..\..\da.png" alt="" align="right">
|
|
|
|
<!-------------------------------------------------------------------------->
|
|
|
|
<p class="h1">
|
|
<span>Connection Pooling</span>
|
|
</p>
|
|
|
|
|
|
<h2>Purpose</h2>
|
|
<p>
|
|
Shows how connections can be managed via a pool (ADO/Northwind & IBX/Employee
|
|
connections).
|
|
</p>
|
|
<p>
|
|
Use the three pairs of <b>Acquire/Release</b> connection buttons to experiment
|
|
with pooling. Note how connections timeout later than the Release call and how
|
|
the delay
|
|
depends on the selected <b>PoolTimeoutSeconds</b> value selected via the
|
|
track bar.
|
|
</p>
|
|
<p>
|
|
Examine the code in <b>ConnectionPoolingMain</b> - you will see that it is minimal - all one
|
|
or two liners.
|
|
</p>
|
|
|
|
<!-------------------------------------------------------------------------->
|
|
</body>
|
|
</html>
|