NewSqlStorage 方法

Creates a new Microsoft SQL Server database in which the original or the upgraded Integration Services packages will be stored.

命名空间:  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

参数

  • username
    类型:System. . :: . .String
    The user name that SQL Server Authentication requires to connect to the database.
  • password
    类型:System. . :: . .String
    The string passwordthat SQL Server Authentication requires to connect to the database.

返回值

类型:Microsoft.SqlServer.Dts.Runtime. . :: . .StorageInfo
A StorageInfo object that specifies the SQL Server database.

注释

If the username parameter is not set, Integration Services use Windows Authentication to connect to the server.

If the username parameter is set, the password parameter must be set.