The user instance login flag is not supported on this version of SQL Server. The connection will be closed

后端 未结 4 553
旧巷少年郎
旧巷少年郎 2020-12-15 04:17

Hi I am using sql server fulll edition.

any idea how should I solve this issue, I search on net but not found any helpful answer.

Thanks

4条回答
  •  青春惊慌失措
    2020-12-15 04:48

    Automatic creation of databases from code is a feature of the SQL Express Edition. Try modifying your connection string after having manually created the FOO database:

    server=SERVERNAME;database=FOO;uid=sa;pwd=
    

提交回复
热议问题