博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
connectionstrings-sql server 2012
阅读量:6876 次
发布时间:2019-06-26

本文共 4007 字,大约阅读时间需要 13 分钟。

最近发现了超全connectionstrings网站:

https://www.connectionstrings.com

    • Server=myServerAddress;Database=myDataBase;User Id=myUsername;
      Password
      =myPassword;
       
    • Server=myServerAddress;Database=myDataBase;Trusted_Connection=True;
       
    • The server/instance name syntax used in the server option is the same for all SQL Server connection strings.

      Server=myServerName\myInstanceName;Database=myDataBase;User Id=myUsername;
      Password
      =myPassword;
       
    •  
    • A Windows CE device is most often not authenticated and logged in to a domain but it is possible to use SSPI or trusted connection and authentication from a CE device using this connection string.

      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.

    • Data Source=190.190.200.100,1433;Network Library=DBMSSOCN;
      Initial Catalog
      =myDataBase;User ID=myUsername;Password=myPassword;

      DBMSSOCN=TCP/IP is how to use TCP/IP instead of Named Pipes. At the end of the Data Source is the port to use. 1433 is the default port for SQL Server. Read more .

    • Server=myServerAddress;Database=myDataBase;Trusted_Connection=True;
      MultipleActiveResultSets
      =true;
       
    • Server=.\SQLExpress;AttachDbFilename=C:\MyFolder\MyDataFile.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.

    • 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.

    • The User Instance feature is deprecated with SQL Server 2012, use the SQL Server Express LocalDB feature instead.

       
    • Server=(localdb)\v11.0;Integrated Security=true;

      The first connection to LocalDB will create and start the instance, this takes some time and might cause a connection timeout failure. If this happens, wait a bit and connect again.

    • Server=(localdb)\v11.0;Integrated Security=true;
      AttachDbFileName
      =C:\MyFolder\MyData.mdf;
       
    • To create a named instance, use the SqlLocalDB.exe program. Example SqlLocalDB.exe create MyInstance and SqlLocalDB.exe start MyInstance

      Server=(localdb)\MyInstance;Integrated Security=true;
       
    • The Server=(localdb) syntax is not supported by .NET framework versions before 4.0.2. However the named pipes connection will work to connect pre 4.0.2 applications to LocalDB instances.

      Server=np:\\.\pipe\LOCALDB#F365A78E\tsql\query;

      Executing SqlLocalDB.exe info MyInstance will get you (along with other info) the instance pipe name such as "np:\\.\pipe\LOCALDB#F365A78E\tsql\query".

    • Both automatic and named instances of LocalDB can be shared.

      Server=(localdb)\.\MyInstanceShare;Integrated Security=true;

      Use SqlLocalDB.exe to share or unshare an instance. For example executeSqlLocalDB.exe share "MyInstance" "MyInstanceShare" to share an instance.

    • 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.

    • 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;

      See also the 

转载于:https://www.cnblogs.com/watermarks/p/3652935.html

你可能感兴趣的文章
SDN网络系统之MiniNet的安装与使用
查看>>
java的Iterator和listIterator的区别
查看>>
服务器虚拟化的好处
查看>>
AxureRP7.0基础教程系列 部件详解 表格Tabel
查看>>
ORACLE之sql语句优化
查看>>
一台机器同时启动多个tomcat
查看>>
Java中的多线程
查看>>
Zookeeper不适合注册中心的原因
查看>>
内核是什么
查看>>
标签的语义
查看>>
Freemarker入门例子
查看>>
利用busybox工具制作微型linux系统二
查看>>
商业无小事,现实生活不在童话故事里
查看>>
Unsupported major.minor version 51.0解决办法
查看>>
我的友情链接
查看>>
新手如何入门
查看>>
15.2-全栈Java笔记:ActionEvent事件类型可以实现哪些功能?
查看>>
apache-tomcat-6.0.X如何配置管理界面Administration Tool
查看>>
Ibatis实例程序
查看>>
Linux下Nagios的安装与配置
查看>>