PowerShell

# SQLServerからデータの取得 # 接続型と非接続型でやってみた # 接続文字列 $ConnectionString = "Data Source=localhost;Initial Catalog=master;Integrated Security=SSPI;" #SQL文 $CommandText = "select name from sys.databases order by name" $cn =…