 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Database Operations in C#
The most common databases used in C# are Microsoft SQL Server and Oracle. The following is done to work with databases.
Connect
Set the Database Name, Optional Parameters and Credentials. The username and password is needed to set a connection to the database.
The connection string would look somewhat like this.
private static string _connectionString = "Data Source=.;Integrated Security=SSPI;Initial Catalog=test;Application Name=Demo;Connection Timeout2w00";
Above, the Application Name is Demo.
Select Statement
To fetch data from the database, the SELECT statement is used
Insert
The INSERT command is used to insert data in the database.
Update
The database needs to be updated for new records. In that case, use the Update command.
Delete
Delete records from the database by selecting the rows you need to delete.
Advertisements
 