Skip to content

KAYTERDOESTHINGS/Cs-Winform-Practice

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C# and Windows Form Practice

This repository is utilized to archive programming assignments constructed in the C# programming language within the Visual Studio 2022 (Community Edition) development environment. These assignments pertain to coursework in Object-Oriented Programming, Windows Programming, and Database Management Systems.

Kết nối CSDL với Project Winform C#

I. Tạo CSDL

1. Kết nối SQL với server local (localdb)\mssqllocaldb

Xây dựng trước CSDL tên SQL Server với database tên QuanLyCuaHangTienLoi

II. Kết nối CSDL

Tạo Project Winform C# trên Visual Studio 2022. Vào tab View -> Sever Explorer, Mở bảng Server Explorer.

Trong bảng Server Explorer: Right click -> Data Connection -> Add Connection

Bảng Add Connection hiện ra, chọn Server name là server local (localdb)\mssqllocaldb. Sau đó nhập tên của CSDL đã được tạo từ trước là QuanLyCuaHangTienLoi. Chọn OK để thêm database.

Mở Properties của database vừa mới được thêm vào, copy Connection String.

Right click tên Project, chọn Properties. Sau đó vào mục Setting, nhập vào các ô tương ứng: Name: cnnStr, Type: string, Scope Application và Value là dòng địa chỉ Connection String vừa mới copy từ database. Đóng và lưu lại.

Cuối cùng, vào code của Form. Thêm thư viện:

using System.Data.SqlClient;

Và tạo đối tượng “conn” bằng dòng lệnh:

SqlConnection conn = new SqlConnection(Properties.Settings.Default.cnnStr)

Để mở kết nối, dùng câu lệnh “conn.Open()” và “conn.Close()” để đóng lại khi sử dụng truy vấn trong các hàm thực thi.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published