Execute Method (sql, record)

DTF API

Copy image CopyHover image
Deployment Tools Foundation Execute Method (sql, record)
Deployment Tools Foundation NamespacesMicrosoft.Deployment.WindowsInstallerDatabaseExecute(String, Record)
Executes the query specified by a SQL string. The query may not be a SELECT statement.
Declaration Syntax
C# Visual Basic Visual C++ F#
public void Execute(
	string sql,
	Record record
)
Public Sub Execute ( 
	sql As String,
	record As Record
)
public:
void Execute(
	String^ sql, 
	Record^ record
)
member Execute : 
        sql : string * 
        record : Record -> unit 
Parameters
sql (String)
SQL query string
record (Record)
Optional Record object containing the values that replace the parameter tokens (?) in the SQL query.
Remarks
Exceptions
Exception Condition
BadQuerySyntaxException the SQL syntax is invalid
InstallerException the View could not be executed
InvalidHandleException the Database handle is invalid

Assembly: Microsoft.Deployment.WindowsInstaller (Module: Microsoft.Deployment.WindowsInstaller.dll) Version: 3.0.0.0 (3.11.1.2318)