1

私はapp.configファイルにAzure SQL Serverの接続文字列を追加しようとしていますが、Azureからコピー&ペーストしようとすると、接続文字列全体に赤い下線が表示されます。私はVisual StudioでWindowsフォームを使用しています。ここでAzure SQL Serverの接続文字列をWindowsフォームのapp.configに追加する方法は?

は私の接続文字列です:

<?xml version="1.0" encoding="utf-8" ?> 
<configuration> 
    <connectionStrings> 
     <add name="AddSales" 
      Server="tcp:Sales99.database.windows.net,1433;Initial" Catalog="Sales;Persist" Security="" Info="False;User" ID=""{your_username};Password=""{your_password};MultipleActiveResultSets=""False;Encrypt=""True;TrustServerCertificate="False;Connection" Timeout="30" 
      providerName="System.Data.SqlClient" /> 
    </connectionStrings> 
</configuration> 

は、この問題を解決する方法はありますか?お知らせ下さい。

答えて

1

あなたの設定は、単純に間違っている - あなたは、接続に関するすべての詳細が含まれていますあなたの設定で属性connectionStringを持っている必要があります - このような何か:

<?xml version="1.0" encoding="utf-8"?> 
<configuration> 
    <connectionStrings> 
     <add name="AddSales" 
      connectionString="Server=tcp:Sales99.database.windows.net,1433;Initial Catalog=Sales;Persist Security Info=False;User ID={your_username};Password={your_password};MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30" 
      providerName="System.Data.SqlClient" /> 
    </connectionStrings> 
</configuration> 
関連する問題