sql server express connection string

后端 未结 6 2403
北恋
北恋 2021-02-19 23:11

Is there a difference between sql server connection string and the express vesion?!

6条回答
  •  猫巷女王i
    2021-02-20 00:12

    Yes there is a difference- the big one being you won't have AttachDbFilename in the full SQL Server.

    SQL Server Express connection string:

    Server=.\SQLExpress;AttachDbFilename=c:\mydbfile.mdf;Database=dbname; Trusted_Connection=Yes;
    

    Typical normal SQL Server connection string:

    Data Source=myServerAddress;Initial Catalog=myDataBase;Integrated Security=SSPI;
    

    See connectionStrings.com for more info.

提交回复
热议问题