C# Class RefreshDatabase.RefreshDatabaseParameters.Database

The database information
Mostrar archivo Open project: ferventcoder/presentations

Public Properties

Property Type Description
Name string
Server string
UserName string
UserPassword string

Public Methods

Method Description
GetConnectionString ( ) : string

Gets the connection string.

Method Details

GetConnectionString() public static method

Gets the connection string.
public static GetConnectionString ( ) : string
return string

Property Details

Name public_oe static_oe property

Name of your database - hopefully on your local default instance
public static string Name
return string

Server public_oe static_oe property

This is the server, it is highly recommended that this is either . or .\SQLExpress
public static string Server
return string

UserName public_oe static_oe property

The user name for the connection string - leave blank for SSPI=true
public static string UserName
return string

UserPassword public_oe static_oe property

The user password for the connection string. If the UserName is blank this will not be used.
public static string UserPassword
return string