Share via


Backup 建構函式

Initializes a new instance of the Backup class.

命名空間:  Microsoft.SqlServer.Management.Smo
組件:  Microsoft.SqlServer.SmoExtended (在 Microsoft.SqlServer.SmoExtended.dll 中)

語法

'宣告
Public Sub New
'用途

Dim instance As New Backup()
public Backup()
public:
Backup()
new : unit -> Backup
public function Backup()

備註

The default constructor initializes any fields to their default values.

範例

VB

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks2008R2AdventureWorks2008R22008R2 database.
Dim db As Database
db = srv.Databases("AdventureWorks2008R2AdventureWorks2008R22008R2")
'Define a Backup object variable. 
Dim bk As New Backup

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2AdventureWorks2008R22008R2")
$bk = new-object Microsoft.SqlServer.Management.Smo.Backup