IDTSExecuteSQL.BypassPrepare 속성
이 API는 SQL Server 2012 인프라를 지원하기 위한 것으로 코드에서 직접 사용할 수 없습니다.
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).
네임스페이스: Microsoft.SqlServer.Dts.Tasks.ExecuteSQLTask
어셈블리: Microsoft.SqlServer.SQLTask(Microsoft.SqlServer.SQLTask.dll)
구문
‘선언
Property BypassPrepare As Boolean
Get
Set
‘사용 방법
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)
속성 값
유형: System.Boolean
true if the task bypasses preparation of the SQL command; false if the RDBMS prepares the statement before execution.