Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xanthium-enterprises/basic-sqlite-database-crud-operations-using-csharp-on-dotnet-platform
Learn to use C# to Create, Connect, Read, Update and Delete a SQLite database for Beginners
https://github.com/xanthium-enterprises/basic-sqlite-database-crud-operations-using-csharp-on-dotnet-platform
csharp csharp-code dotnet dotnet-core dotnet-framework sqlite sqlite-database sqlite3 sqlite3-database
Last synced: 22 days ago
JSON representation
Learn to use C# to Create, Connect, Read, Update and Delete a SQLite database for Beginners
- Host: GitHub
- URL: https://github.com/xanthium-enterprises/basic-sqlite-database-crud-operations-using-csharp-on-dotnet-platform
- Owner: xanthium-enterprises
- License: mit
- Created: 2024-06-06T08:23:51.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-12-13T14:48:35.000Z (2 months ago)
- Last Synced: 2024-12-13T16:17:44.896Z (2 months ago)
- Topics: csharp, csharp-code, dotnet, dotnet-core, dotnet-framework, sqlite, sqlite-database, sqlite3, sqlite3-database
- Language: C#
- Homepage: https://www.xanthium.in/cross-platform-create-connect-update-sqlite3-database-using-csharp-dotnet-platform
- Size: 45.8 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Basic Sqlite Database CRUD Operations using C# on .NET Platform for Novices
## Tutorial
- [Learn to Create,Read,update and delete records,tables from a SQlite3 database using C# on .NET Platform for the absolute Beginner](https://www.xanthium.in/cross-platform-create-connect-update-sqlite3-database-using-csharp-dotnet-platform)
- **Youtube Tutorial**
-[Video Tutorial on How to connect C# with SQLite Database for performing CRUD operations](https://www.youtube.com/watch?v=HqywH0bZJlA)- If you are interested in using **SQlite database with WinForms**,do check our [Learn to integrate SQLite database with WinForms Application using C# Tutorial](https://www.xanthium.in/building-csharp-sqlite-gui-crud-applications-using-winforms-api-tutorial) where you learn to display the sqlite table data on a Windows Form and Manipulate it.
## Introduction
- In this repo you will find C# source codes for performing **CRUD** operations on a **SQLite3** Database using **C#** (CSharp) along with a sample Sqlite database to practise.
- We have an online tutorial as well as a Youtube Video for beginners (link above) who are new to **C#** and **SQlite 3** Database that will teach the user
- *How to setup Visual Studio to communicate with Sqlite 3 Database*
- *How to setup .NET CLI Project to communicate with Sqlite 3 Database*
- *How to create a table inside the SQlite3 database using C#*
- *How to insert data into the table inside Sqlite database using C#*
- *How to read data from a sqlite database record using C#*
- *How to handle null values while reading data from a sqlite database using C#*
- *How to update a record in the sqlite database using C#*
- *How to delete a record in the sqlite database using C#*## Repo Contents
- C# Source Codes
- Visual Studio Project files
- Sample Sqlite Database## Some Screenshots
- Reading rows from sqlite database using C#
-![Reading rows from sqlite database using C#](https://www.xanthium.in/sites/default/files/inline-images/read-rows-from-sqlite-database-output.jpg)- Updating Rows of Sqlite DB from Command line using C#
- ![Updating Rows of Sqlite DB from Command line using C#](https://www.xanthium.in/sites/default/files/inline-images/program-update-sqlite-databse-csharp.jpg)## Additional Links
- [Learn to Configure .NET SDK CLI for Software development Tutorial](https://www.xanthium.in/dotnet-platform-software-development-using-command-line-compiler-tools-net-sdk)
- [Creating Simple CSV files using C# on .NET Platform](https://www.xanthium.in/how-to-create-read-write-data-to-csv-file-using-csharp-dotnet-platform)