An open API service indexing awesome lists of open source software.

https://github.com/snobu/observe-conn-pool

Demonstrates the ADO.NET connection pool mechanics
https://github.com/snobu/observe-conn-pool

adonet database dotnet

Last synced: about 2 months ago
JSON representation

Demonstrates the ADO.NET connection pool mechanics

Awesome Lists containing this project

README

          

# Code sample to demonstrate the ADO.NET connection pool mechanics

Usage:

```bash
$ export CONNSTR="your_SQLServer_connection_string"
```

Edit Main() in Program.cs.

### Build

```bash
make build
# or
dotnet restore && dotnet build
```

### Run

```bash
make run
# or
dotnet run
# or
dotnet run | ./chart.py
```

![screenshot](screenshot.png)

### Clean
```
make clean
```