Freigeben über


Database.Create Method (Boolean)

Creates a database on the instance of Microsoft SQL Server as defined by the Database object.

Namespace: Microsoft.SqlServer.Management.Smo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntax

'Declaration
Public Sub Create ( _
    forAttach As Boolean _
)
public void Create (
    bool forAttach
)
public:
void Create (
    bool forAttach
)
public void Create (
    boolean forAttach
)
public function Create (
    forAttach : boolean
)

Parameter

  • forAttach
    A Boolean value that specifies whether the database is being created so that a database can be attached.

    If True, the database is created for a database to be attached.

    If False, the database is not created for a database to be attached.

Hinweise

Aktualisierter Text:17. Juli 2006

The Create method creates the database on the instance of SQL Server. You can create a Database object variable and set properties, but the database is not created on the instance of SQL Server until the Create method is called.

Der Namespace, die Klasse oder das Element wird nur in der Version 2.0 von Microsoft .NET Framework unterstützt.

Beispiel

'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()

Threadsicherheit

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Plattformen

Entwicklungsplattformen

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Zielplattforme

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Siehe auch

Verweis

Database Class
Database Members
Microsoft.SqlServer.Management.Smo Namespace

Andere Ressourcen

How to: Create, Alter, and Remove a Database in Visual Basic .NET
Trennen und Anfügen von Datenbanken
Creating, Altering, and Removing Databases
CREATE DATABASE (Transact-SQL)