実行プログラム
のPowerShellスクリプト
または、アプリの記述と VM へのデプロイなしでエンド ツー エンドの設定をテストする簡単な方法は、> PowerShell を使用することです。
- ポータルで [Virtual Machines] にナビゲートして Windows 仮想マシンに移動し、 [概要] の [接続] をクリックします。
:
$SqlConnection.Open()
エラー
PS > $SqlConnection.Open()
Exception calling "Open" with "0" argument(s): "A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance
name is correct and that SQL Server is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server)"
At line:1 char:1
+ $SqlConnection.Open()
+ ~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [], MethodInvocationException
+ FullyQualifiedErrorId : SqlException
原因
$SqlConnection.ConnectionString = "Data Source = <AZURE-SQL-SERVERNAME>; Initial Catalog = <DATABASE>"
<AZURE-SQL-SERVERNAME>
をサーバー名だけで指定している
解決策
<AZURE-SQL-SERVERNAME>
をサーバー名.database.windows形式で指定