Share via


Refresh méthode

Updates the Database object.

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.Smo (dans Microsoft.SqlServer.Smo.dll)

Syntaxe

'Déclaration
Public Overrides Sub Refresh
'Utilisation
Dim instance As Database

instance.Refresh()
public override void Refresh()
public:
virtual void Refresh() override
abstract Refresh : unit -> unit 
override Refresh : unit -> unit 
public override function Refresh()

Implémente

IRefreshable. . :: . .Refresh() () () ()

Notes

The Refresh method updates the Database object properties from the instance of SQL Server. For information about refreshing data programmatically, see Programmation de SQL Server 2008 Native Client.

Exemples

'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server

'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")

'Rename the database
db.Rename("AdventureWorks2")

'Refresh the properties on the database.
db.Refresh()
db.Rename("AdventureWorks")