https://github.com/yusufsefasezer/csharp-ado-contact
Contact list application developed with Winforms, ADO.NET and C#.
https://github.com/yusufsefasezer/csharp-ado-contact
ado-net csharp-examples dbproviderfactories dbproviderfactory
Last synced: 8 months ago
JSON representation
Contact list application developed with Winforms, ADO.NET and C#.
- Host: GitHub
- URL: https://github.com/yusufsefasezer/csharp-ado-contact
- Owner: yusufsefasezer
- License: mit
- Created: 2019-04-11T12:37:12.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-06-05T12:14:09.000Z (almost 3 years ago)
- Last Synced: 2025-03-03T18:48:07.006Z (about 1 year ago)
- Topics: ado-net, csharp-examples, dbproviderfactories, dbproviderfactory
- Language: C#
- Homepage: https://yusufsefasezer.github.io/csharp-ado-contact/
- Size: 39.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# C# ADO.NET Contact List
Contact list application developed with Winforms, ADO.NET and C#.
This project contains different approach (Connected, Disconnected) for ADO.NET operations.
## [Download](https://github.com/yusufsefasezer/csharp-ado-contact/archive/master.zip)
## How it works
First, you must create a table with the following fields in any database system.
| Fields | Type |
|---------------|---------------|
| ContactId | int (auto increment) |
| FirstName | varchar |
| LastName | varchar |
| Email | varchar |
| PhoneNumber | varchar |
| Address | varchar |
| WebAddress | varchar |
| Notes | varchar |
Afterwards, set properly provider and provider connection settings in `App.config`
`dataProvider = System.Data.SqlClient`
`connectionString = Data Source=.;Initial Catalog=Contact;Integrated Security=True`
# License
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details
Created by [Yusuf Sezer](https://www.yusufsezer.com)