SPDatabaseParameters.CreateParameters method (String, String, String, SecureString, String, SPDatabaseParameterOptions)
Creates a new database parameters object by using the specified parameters.
Namespace: Microsoft.SharePoint.Administration
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Shared Function CreateParameters ( _
initialCatalog As String, _
dataSource As String, _
username As String, _
password As SecureString, _
failoverPartner As String, _
options As SPDatabaseParameterOptions _
) As SPDatabaseParameters
'Usage
Dim initialCatalog As String
Dim dataSource As String
Dim username As String
Dim password As SecureString
Dim failoverPartner As String
Dim options As SPDatabaseParameterOptions
Dim returnValue As SPDatabaseParameters
returnValue = SPDatabaseParameters.CreateParameters(initialCatalog, _
dataSource, username, password, failoverPartner, _
options)
public static SPDatabaseParameters CreateParameters(
string initialCatalog,
string dataSource,
string username,
SecureString password,
string failoverPartner,
SPDatabaseParameterOptions options
)
Parameters
initialCatalog
Type: System.StringThe catalog or database name to use for the database connection.
dataSource
Type: System.StringThe data source or database server to use for the database connection.
username
Type: System.StringThe user name to be used for the database connection.
password
Type: System.Security.SecureStringThe password to be used for the database connection.
failoverPartner
Type: System.StringThe name of the failover server to use for the database connection.
options
Type: Microsoft.SharePoint.Administration.SPDatabaseParameterOptionsThe database parameter options.
Return value
Type: Microsoft.SharePoint.Administration.SPDatabaseParameters
The new database parameters object.