Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I set an SQL Server connection string?

I'm developing a simple C# application, and I'd like to know this: When I connect my application to SQL Server on my PC, I know the connection string (server name, password, etc.), but when I connect it to another PC, the SQL Server connection string is different. Is there a common account in SQL Server that comes with a default account that can connect?

I have heard about the sa account in SQL Server. What is sa?

like image 958
Roshan Avatar asked Mar 26 '13 07:03

Roshan


People also ask

How do I create a connection string in SQL Server?

Server=ServerName;Database=DatabaseName;User Id=UserName;Password=UserPassword; This usage type may cause vulnerabilities in our application thus using windows authentication can provide more security in our applications. The following connection string will connect the database using windows authentication.

How do I set up a new SQL connection?

On the Tools menu, click Data Connections. In the Data Connections dialog box, click Add. In the Data Connection Wizard, click Create a new connection to, click Receive data, and then click Next.


2 Answers

.NET DataProvider -- Standard Connection with username and password

using System.Data.SqlClient;  SqlConnection conn = new SqlConnection(); conn.ConnectionString =   "Data Source=ServerName;" +   "Initial Catalog=DataBaseName;" +   "User id=UserName;" +   "Password=Secret;"; conn.Open(); 

.NET DataProvider -- Trusted Connection

SqlConnection conn = new SqlConnection(); conn.ConnectionString =   "Data Source=ServerName;" +   "Initial Catalog=DataBaseName;" +   "Integrated Security=SSPI;"; conn.Open(); 

Refer to the documentation.

like image 114
Itachi Avatar answered Oct 12 '22 23:10

Itachi


Actually you can use the SqlConnectionStringBuilder class to build your connection string. To build the connection string, you need to instantiate an object from that SqlConnectionStringBuilder and set their properties with the parameters you use to connect to the database. Then you can get the connection string from the ConnectionString property from the SqlConnectionStringBuilder object, as is shown in this example:

For example:

SqlConnectionStringBuilder sConnB = new SqlConnectionStringBuilder ()     {         DataSource = "ServerName",         InitialCatalog = "DatabaseName",         UserID = "UserName",         Password = "UserPassword"     }.ConnectionString  SqlConnection conn = new SqlConnection(sConnB.ConnectionString); 

You can either use the new operator to make that directly.

For example:

SqlConnection conn = new SqlConnection(     new SqlConnectionStringBuilder ()     {         DataSource = "ServerName",         InitialCatalog = "DatabaseName",         UserID = "UserName",         Password = "UserPassword"     }.ConnectionString ); 

You can add more parameters to build your connection string. Remember that the parameters are defined by the values setted in the SqlConnectionStringBuilder object properties.

Also you can get the database connection string from the connection of Microsoft Visual Studio with the attached database. When you select the database, in the properties panel is shown the connection string.

The complete list of properties of the SqlConnectionStringBuilder class is listed in this page from the Microsoft MSDN site.

About the default user of SQL Server, sa means "system administrator" and its password varies according the SQL Server version. On this page you can see how the password varies.

SQL Server 2008/R2 Express User: sa Password: [blank password - leave field empty to connect]
SQL Server 201x Express User: sa Password: Password123
SQL Server 20xx Web or Standard User: sa Password: will be the same as your administrator or root user password at the time the VDS was provisioned.

You can log in with the sa user in this login window at the start of SQL Server Database Manager. Like in this image:

Log in example

like image 27
CryogenicNeo Avatar answered Oct 12 '22 23:10

CryogenicNeo