Share via


IDTSExecuteSQL.BypassPrepare Property

This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.

Gets or sets a value that indicates whether the Execute SQL task skips preparation of the statement when sending the SQL statement to the relational database management system (RDBMS).

Namespace:  Microsoft.SqlServer.Dts.Tasks.ExecuteSQLTask
Assembly:  Microsoft.SqlServer.SQLTask (in Microsoft.SqlServer.SQLTask.dll)

Syntax

'Declaration
Property BypassPrepare As Boolean 
    Get 
    Set
'Usage
Dim instance As IDTSExecuteSQL 
Dim value As Boolean 

value = instance.BypassPrepare

instance.BypassPrepare = value
bool BypassPrepare { get; set; }
property bool BypassPrepare {
    bool get ();
    void set (bool value);
}
abstract BypassPrepare : bool with get, set
function get BypassPrepare () : boolean 
function set BypassPrepare (value : boolean)

Property Value

Type: System.Boolean
true if the task bypasses preparation of the SQL command; false if the RDBMS prepares the statement before execution.

See Also

Reference

IDTSExecuteSQL Interface

Microsoft.SqlServer.Dts.Tasks.ExecuteSQLTask Namespace