(2024)
simpleCRUD is a lightweight desktop application built with VB.NET, demonstrating basic Create, Read, Update, and Delete (CRUD) operations using a MySQL database.
It is intended as a learning resource or starter template for developers building Windows Forms applications with database integration.
- Create, Read, Update, and Delete (CRUD) functionality
- Simple Windows Forms user interface
- MySQL database integration using
MySql.Data.dll - Data display using
ListView
- Visual Studio 2012 or later
Download Visual Studio - .NET Framework 4.8.1 or later
Download .NET Framework 4.8.1 - XAMPP or WAMP (for MySQL)
Download XAMPP
Download WAMP - SQLYog or any MySQL client
Download SQLYog - MySQL .NET Connector (
MySql.Data.dll)
Download Connector/NET
- Download and extract the project
.zipfile. - Start MySQL using XAMPP, WAMP, or another server stack.
- Open your MySQL client and import the
.sqlfile located in thesqlfolder. - Open
simpleCRUD.slnin Visual Studio. - Ensure the following before running the application:
- The project targets .NET Framework 4.8.1 or later.
MySql.Data.dllis added and referenced in the project.
- Build and run the project.
Developer: Janelle Ann Castillo (nncast)