StorageInfo.NewSqlStorage メソッド
元の Integration Services パッケージまたはアップグレードされたパッケージを格納するための新しい Microsoft SQL Server データベースを作成します。
名前空間: Microsoft.SqlServer.Dts.Runtime
アセンブリ: Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS.dll)
構文
'宣言
Public Shared Function NewSqlStorage ( _
host As String, _
username As String, _
password As String _
) As StorageInfo
'使用
Dim host As String
Dim username As String
Dim password As String
Dim returnValue As StorageInfo
returnValue = StorageInfo.NewSqlStorage(host, _
username, password)
public static StorageInfo NewSqlStorage(
string host,
string username,
string password
)
public:
static StorageInfo^ NewSqlStorage(
String^ host,
String^ username,
String^ password
)
static member NewSqlStorage :
host:string *
username:string *
password:string -> StorageInfo
public static function NewSqlStorage(
host : String,
username : String,
password : String
) : StorageInfo
パラメーター
- host
型: System.String
パッケージを格納するサーバーの名前。
- username
型: System.String
SQL Server 認証を使用してデータベースに接続する際に必要となるユーザー名。
- password
型: System.String
SQL Server 認証を使用してデータベースに接続する際に必要となる文字列パスワード。
戻り値
型: Microsoft.SqlServer.Dts.Runtime.StorageInfo
SQL Server データベースを指定する StorageInfo オブジェクト。
説明
username パラメーターが設定されていなければ、Integration Services は Windows 認証を使用してサーバーに接続します。
username パラメーターを設定する場合は password パラメーターも設定する必要があります。