Database Constructor (Server, String)
Initializes a new instance of the Database class on the specified server and with the specified name.
Espacio de nombres: Microsoft.SqlServer.Management.Smo
Ensamblado: Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Sintaxis
'Declaración
Public Sub New ( _
server As Server, _
name As String _
)
'Uso
Dim server As Server
Dim name As String
Dim instance As New Database(server, _
name)
public Database(
Server server,
string name
)
public:
Database(
Server^ server,
String^ name
)
new :
server:Server *
name:string -> Database
public function Database(
server : Server,
name : String
)
Parámetros
- server
Tipo: Microsoft.SqlServer.Management.Smo. . :: . .Server
A Server object that represents the instance of SQL Server on which the database exists.
- name
Tipo: System. . :: . .String
A String value that specifies the name of the database.
Ejemplos
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Define a Database object variable by supplying the server and the database name arguments in the constructor.
Dim db As Database
db = New Database(srv, "Test_SMO_Database")
'Create the database on the instance of SQL Server.
db.Create()
'Reference the database and display the date when it was created.
db = srv.Databases("Test_SMO_Database")
Console.WriteLine(db.CreateDate)
'Remove the database.
db.Drop()