SQL Server 2008 Connection String Samples - Connection Strings
SQL Server 2008 Connection String Samples - Connection Strings
com
http://www.connectionstrings.com/sql-server-2008
Reference
Articles
Forums
Contributors
About
Retro
Advertise
DataFlex ODBC Driver Easy SQL direct access to DataFlex database tables with Windows apps. www.flexquarters.com SQL Database Designer Design, visualize, document and reverse engineer any database. www.modelright.com/ Database tool for MS SQL Graphical SQL Server Management, DB visual design tools,database editor www.sqlmanager.net/products/MSSQL
Sign-in | Join
Share
Se l e c te d Ar ti c l e s
What is a connection string? Rules for connection strings All SQL Server SqlConnection properties SQL Server Data Types Reference
. N E T F r a m e w o r k D a t a P r ov id e r f o r S QL S e r v e r
Type: .NET Framework Class Library Usage: System.Data.SqlClient.SqlConnection Manufacturer: Microsoft More info about this class library Customize string example values
Standard Security
Data Source = myServerAddress; Initial Catalog = myDataBase; User Id = myUsername; Password = myPassword;
Use serverName\instanceName as Data Source to connect to a specific SQL Server instance. Are you using SQL Server 2008 Express? Don't miss the server name syntax Servername\SQLEXPRESS where you substitute Servername with the name of the computer where the SQL Server Express installation resides.
Server = myServerAddress; Database = myDataBase; User ID = myUsername; Password = myPassword; Trusted_Connection = False;
Trusted Connection
Data Source = myServerAddress; Initial Catalog = myDataBase; Integrated Security = SSPI;
Data Source = myServerAddress; Initial Catalog = myDataBase; Integrated Security = SSPI; User ID = myDomain\myUsername; Password = myPassword;
Note that this will only work on a CE device. Read more about connecting to SQL Server from CE devices here
1 de 5
http://www.connectionstrings.com/sql-server-2008
Attach a database file, located in the data directory, on connect to a local SQL Server Express instance
Server = .\SQLExpress; AttachDbFilename = |DataDirectory|mydbfile.mdf; Database = dbname; Trusted_Connection = Yes;
Why is the Database parameter needed? If the named database have already been attached, SQL Server does not reattach it. It uses the attached database as the default for the connection.
Data Source = .\SQLExpress; Integrated Security = true; AttachDbFilename = |DataDirectory|\mydb.mdf; User Instance = true;
To use the User Instance functionality you need to enable it on the SQL Server. This is done by executing the following command: sp_configure 'user instances enabled', '1'. To disable the functionality execute sp_configure 'user instances enabled', '0'.
Database mirroring
If you connect with ADO.NET or the SQL Native Client to a database that is being mirrored, your application can take advantage of the drivers ability to automatically redirect connections when a database mirroring failover occurs. You must specify the initial principal server and database in the connection string and the failover partner server.
Data Source = myServerAddress; Failover Partner = myMirrorServerAddress; Initial Catalog = myDataBase; Integrated Security = True;
There is ofcourse many other ways to write the connection string using database mirroring, this is just one example pointing out the failover functionality. You can combine this with the other connection strings options available.
Asynchronous processing
A connection to SQL Server that allows for the issuing of async requests through ADO.NET objects.
Server = myServerAddress; Database = myDataBase; Integrated Security = True; Asynchronous Processing = True;
S QL S e r v e r N at iv e C lie n t 1 0 . 0 OL E D B Pr ov id e r
Type: OLE DB Provider Usage: Provider=SQLNCLI10 Manufacturer: Microsoft More info about this provider Customize string example values
Standard security
2 de 5
http://www.connectionstrings.com/sql-server-2008
Provider = SQLNCLI10; Server = myServerAddress; Database = myDataBase; Uid = myUsername; Pwd = myPassword;
Are you using SQL Server 2008 Express? Don't miss the server name syntax Servername\SQLEXPRESS where you substitute Servername with the name of the computer where the SQL Server 2008 Express installation resides.
Trusted connection
Provider = SQLNCLI10; Server = myServerAddress; Database = myDataBase; Trusted_Connection = yes;
Equivalent key-value pair: "Integrated Security=SSPI" equals "Trusted_Connection=yes"
Attach a database file, located in the data directory, on connect to a local SQL Server Express instance
Provider = SQLNCLI10; Server = .\SQLExpress; AttachDbFilename = |DataDirectory|mydbfile.mdf; Database = dbname; Trusted_Connection = Yes;
Why is the Database parameter needed? If the named database have already been attached, SQL Server does not reattach it. It uses the attached database as the default for the connection.
Database mirroring
If you connect with ADO.NET or the SQL Native Client to a database that is being mirrored, your application can take advantage of the drivers ability to automatically redirect connections when a database mirroring failover occurs. You must specify the initial principal server and database in the connection string and the failover partner server.
Provider = SQLNCLI10; Data Source = myServerAddress; Failover Partner = myMirrorServerAddress; Initial Catalog = myDataBase; Integrated Security = True;
There is ofcourse many other ways to write the connection string using database mirroring, this is just one example pointing out the failover functionality. You can combine this with the other connection strings options available.
. N E T F r a m e w o r k D a t a P r ov id e r f o r O L E D B
Type: .NET Framework Wrapper Class Library Usage: System.Data.OleDb.OleDbConnection Manufacturer: Microsoft More info about this wrapper class library Customize string example values
Provider = SQLNCLI10; Server = myServerAddress; Database = myDataBase; Uid = myUsername; Pwd = myPassword;
S QL S e r v e r N at iv e C lie n t 1 0 . 0 OD B C D r iv e r
Type: ODBC Driver Usage: Driver={SQL Server Native Client 10.0} Manufacturer: Microsoft More info about this driver Customize string example values
3 de 5
http://www.connectionstrings.com/sql-server-2008
Standard security
Driver = {SQL Server Native Client 10.0}; Server = myServerAddress; Database = myDataBase; Uid = myUsername; Pwd = myPassword;
Are you using SQL Server 2008 Express? Don't miss the server name syntax Servername\SQLEXPRESS where you substitute Servername with the name of the computer where the SQL Server 2008 Express installation resides.
Trusted Connection
Driver = {SQL Server Native Client 10.0}; Server = myServerAddress; Database = myDataBase; Trusted_Connection = yes;
Equivalent key-value pair: "Integrated Security=SSPI" equals "Trusted_Connection=yes"
Driver = {SQL Server Native Client 10.0}; Server = myServerName\theInstanceName; Database = myDataBase; Trusted_Connection = yes;
oConn.Properties("Prompt") = adPromptAlways Driver = {SQL Server Native Client 10.0}; Server = myServerAddress; Database = myDataBase;
Attach a database file, located in the data directory, on connect to a local SQL Server Express instance
Driver = {SQL Server Native Client 10.0}; Server = .\SQLExpress; AttachDbFilename = |DataDirectory|mydbfile.mdf; Database = dbname; Trusted_Connection = Yes;
Why is the Database parameter needed? If the named database have already been attached, SQL Server does not reattach it. It uses the attached database as the default for the connection.
Database mirroring
If you connect with ADO.NET or the SQL Native Client to a database that is being mirrored, your application can take advantage of the drivers ability to automatically redirect connections when a database mirroring failover occurs. You must specify the initial principal server and database in the connection string and the failover partner server.
Driver = {SQL Server Native Client 10.0}; Server = myServerAddress; Failover_Partner = myMirrorServerAddress; Database = myDataBase; Trusted_Connection = yes;
There is ofcourse many other ways to write the connection string using database mirroring, this is just one example pointing out the failover functionality. You can combine this with the other connection strings options available. Please note if you are using TCP/IP (using the network library parameter) and database mirroring, including port number in the address (formed as servername,portnumber) for booth the main server and the failover partner can solve some reported issues.
. N E T F r a m e w o r k D a t a P r ov id e r f o r O D B C
Type: .NET Framework Wrapper Class Library Usage: System.Data.Odbc.OdbcConnection Manufacturer: Microsoft More info about this wrapper class library Customize string example values
Driver = {SQL Server Native Client 10.0}; Server = myServerAddress; Database = myDataBase; Uid = myUsername; Pwd = myPassword;
4 de 5
http://www.connectionstrings.com/sql-server-2008
S QL X M L 4 . 0 O L E D B Pr o v id e r
Type: OLE DB Provider Usage: Provider=SQLXMLOLEDB.4.0;Data Provider=providername Manufacturer: Microsoft More info about this provider Customize string example values
C o n t e x t C o n n e c t i on
Type: .NET Framework Class Library Usage: Manufacturer: Microsoft More info about this class library Customize string example values
Context Connection
Connecting to "self" from within your CLR stored prodedure/function. The context connection lets you execute Transact-SQL statements in the same context (connection) that your code was invoked in the first place.
C# using(SqlConnection connection = new SqlConnection("context connection=true")) { connection.Open(); // Use the connection } VB.Net Using connection as new SqlConnection("context connection=true") connection.Open() ' Use the connection End Using
When to use SQL Native Client? List of all SqlConnection connection string properties
Powered by CSAS
5 de 5