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
- Host: GitHub
- URL: https://github.com/snobu/observe-conn-pool
- Owner: snobu
- Created: 2018-10-11T12:39:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-16T06:29:11.000Z (over 7 years ago)
- Last Synced: 2025-05-04T16:11:51.954Z (about 1 year ago)
- Topics: adonet, database, dotnet
- Language: C#
- Homepage:
- Size: 71.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```

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