Skip to main content

Database Connectivity in C#

Database Connectivity in C# (Local Database)



  Hello, in this tutorial I am going to show you how to connect the C# application with the local database. So let's get Started.


Step 1: Create A local database file. I am using Access File.

Step 2: Open your C# project and go to the forms where you need a database connection.

Step 3: Use The Following Code To Connect with the database.

    1- need to include this statement in the code at the top. 


   2-need to write this statement in the class of that form.



here the Source in the above code is the path of my Access file which I am using as a database.
the above code is to create a connection object of a database with a data source.

3-use this statement to open the database connection. you can write this code in button click method of the button.



4- within the same button click method you can write this code to display data from the table which is in that Access file.



here the editTable is the Data Grid View component name which I am using to display table data.
This is the code and output.



Comments

Popular Posts

How to create a error message box using notepad

How to create a message box using notepad Step 1- open notepad Step 2- Write this code on notepad X=Msgbox("Press OK.",1+16,"Demo Error") note- in the above code instead of double quoted text you can write anything you want Step 3- save this file as .vbs Step 4- open the ".vbs" file

How to create a windows form to open a pdf file using c#

How to create windows form to open a pdf file using c# to open a pdf file in c# we need to use ProcessStartInfo method which inside System.Diagnostic to make windows form to open a pdf file using c# follow these steps : Step 1 - open visual studio and goto new project Step 2 - select c# and windows form application Step 3 - add a button in the form Step 4 - open the form code and add using System.Diagnostic; in namespaces Step 5 - write the code for string variable which holds the values as pdf file path Step 6 - write the code for ProcessStarInfo method Step 7 - pass the string variable to start the process output this is the output you can open any pdf using these steps also you can use the open file dialog from the toolbox to select pdf file to open by a user.