Creating SQL Connections : SQL Server : ADO.Net C# Examples


C# Examples » ADO.Net » SQL Server »

 

Creating SQL Connections


  1.       
  2. using  System;  
  3. using  System.Data.SqlClient;  
  4.   
  5. class  MainClass    
  6. {  
  7.     static  void  Main(string[]  args)  
  8.     {  
  9.         SqlConnection  MyConnection  =  new  SqlConnection("Data  Source=(local);  Initial    Catalog  =  MyDatabase;  User  ID=sa;Password=");  
  10.   
  11.         MyConnection.Open();  
  12.     }  
  13. }  
  14.       
  15.      
  16.     
  17.      


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo ADO.Net
» SQL Server