Skip to main content
All docs
V25.1
  • .NET Framework 4.6.2+

    DatabaseOptions(String, String, String, String, String, String, String, String) Constructor

    Initializes a new instance of the DatabaseOptions class with specified settings.

    Namespace: DevExpress.EasyTest.Framework

    Assembly: DevExpress.EasyTest.v25.1.dll

    NuGet Package: DevExpress.EasyTest

    Declaration

    public DatabaseOptions(
        string name,
        string dbName,
        string backupFileName = null,
        string dbSourceLocation = null,
        string server = null,
        string connectionString = null,
        string userID = null,
        string password = null
    )

    Parameters

    Name Type Description
    name String

    Specifies the configuration unique name.

    dbName String

    Specifies the database name.

    Optional Parameters

    Name Type Default Description
    backupFileName String null

    Specifies the fully qualified name of the database backup file.

    dbSourceLocation String null

    Specifies the fully qualified database file name.

    server String null

    Specifies the SQL server instance name.

    connectionString String null

    Specifies a connection string.

    userID String null

    Specifies the login that must be used when accessing the database.

    password String null

    Specifies the password that must be used when accessing the database.

    See Also