BackupRestoreBase.ExecuteSqlAsync Method

Executes a batch of Transact-SQL statements asynchronously that does not expect a returned results set on the specified instance of SQL Server.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.SmoExtended (in Microsoft.SqlServer.SmoExtended.dll)

Syntax

'Declaration
Protected Sub ExecuteSqlAsync ( _
    server As Server, _
    queries As StringCollection _
)
'Usage
Dim server As Server
Dim queries As StringCollection

Me.ExecuteSqlAsync(server, queries)
protected void ExecuteSqlAsync(
    Server server,
    StringCollection queries
)
protected:
void ExecuteSqlAsync(
    Server^ server, 
    StringCollection^ queries
)
member ExecuteSqlAsync : 
        server:Server * 
        queries:StringCollection -> unit 
protected function ExecuteSqlAsync(
    server : Server, 
    queries : StringCollection
)

Parameters