using System.Data; // Include This In Your Code
using System.Data.SqlClient; // Include This In Your Code
public class DBConnections
{
public SqlConnection ConnectDB() // i create a connection in this function and return the connection
{
string ConnectionString = @"Server=localhost;Database=dbname;Trusted_Connection=True";
//u can use localhost as the server name or user ur sql server instance name
// below commented code is to connect to a remote database. u have to configure database to do this //string ConnectionString = "Data Source=192.168.0.1,1433;Network Library=DBMSSOCN;Initial //Catalog=dbname;User ID=useridhere;Password=passwordhere";
SqlConnection con = new SqlConnection(ConnectionString);
try
{
con.Open();
}
catch (SqlException)
{
}
catch (Exception ex )
{
MessageBox.Show(ex.Message);
}
return con;
}
}
Subscribe to:
Post Comments (Atom)
JWT Token Decode Using Jquery
When it come to authentication we use many mechanism. Ones the user authenticated we must keep these details somewhere safe. So we can share...
-
In this blog post Ill explain you the logic behind the Sri Lankan National Identity Card (NIC). Sri Lanka now has Old NIC No Format as well ...
-
In This Article I Will Demonstrate You To Create A Simple Chat Program Using Java Remote Method Invocation(RMI). Following Program Supports ...
-
In a windows form application sometimes you may want to import a excel file to a data grid view. In this blog post Ill demonstrate to you gu...
No comments:
Post a Comment