SqlCommandBuilder.GetInsertCommand 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得在資料庫上執行插入時所需之自動產生的 SqlCommand 物件。
多載
GetInsertCommand() |
取得在資料庫上執行插入時所需之自動產生的 SqlCommand 物件。 |
GetInsertCommand(Boolean) |
取得在資料庫上執行插入時所需之自動產生的 SqlCommand 物件。 |
備註
應用程式可以使用 GetInsertCommand 方法進行參考或疑難解答,因為它會傳回 SqlCommand 要執行的物件。
您也可以使用 GetInsertCommand 作為修改命令的基礎。 例如,您可以呼叫 GetInsertCommand 和修改 CommandTimeout 值,然後在 上 SqlDataAdapter明確設定該值。
第一次產生 Transact-SQL 語句之後,如果應用程式以任何方式變更語句,就必須明確呼叫 RefreshSchema 。 否則, GetInsertCommand 仍會使用上一個語句中可能不正確的資訊。 當應用程式呼叫 Update 或 GetInsertCommand時,會先產生 Transact-SQL 語句。
如需詳細資訊,請參閱使用 CommandBuilder 產生命令。
GetInsertCommand()
取得在資料庫上執行插入時所需之自動產生的 SqlCommand 物件。
public:
System::Data::SqlClient::SqlCommand ^ GetInsertCommand();
public System.Data.SqlClient.SqlCommand GetInsertCommand ();
member this.GetInsertCommand : unit -> System.Data.SqlClient.SqlCommand
override this.GetInsertCommand : unit -> System.Data.SqlClient.SqlCommand
Public Function GetInsertCommand () As SqlCommand
傳回
執行插入所需而自動產生的 SqlCommand 物件。
備註
應用程式可以使用 GetInsertCommand 方法進行參考或疑難解答,因為它會傳回 SqlCommand 要執行的物件。
您也可以使用 GetInsertCommand 作為修改命令的基礎。 例如,您可以呼叫 GetInsertCommand 和修改 CommandTimeout 值,然後在 上 SqlDataAdapter明確設定該值。
第一次產生 Transact-SQL 語句之後,如果應用程式以任何方式變更語句,就必須明確呼叫 RefreshSchema 。 否則, GetInsertCommand 仍會使用上一個語句中可能不正確的資訊。 當應用程式呼叫 Update 或 GetInsertCommand時,會先產生 Transact-SQL 語句。
如需詳細資訊,請參閱使用 CommandBuilder 產生命令。
另請參閱
適用於
GetInsertCommand(Boolean)
取得在資料庫上執行插入時所需之自動產生的 SqlCommand 物件。
public:
System::Data::SqlClient::SqlCommand ^ GetInsertCommand(bool useColumnsForParameterNames);
public System.Data.SqlClient.SqlCommand GetInsertCommand (bool useColumnsForParameterNames);
override this.GetInsertCommand : bool -> System.Data.SqlClient.SqlCommand
Public Function GetInsertCommand (useColumnsForParameterNames As Boolean) As SqlCommand
參數
- useColumnsForParameterNames
- Boolean
如果為 true
,則盡可能產生符合資料行名稱的參數名稱。 如為 false
,則產生 @p1
、@p2
等等。
傳回
執行插入時所需之自動產生的 SqlCommand 物件。
備註
應用程式可以使用 GetInsertCommand 方法進行參考或疑難解答,因為它會傳回 SqlCommand 要執行的物件。
您也可以使用 GetInsertCommand 作為修改命令的基礎。 例如,您可以呼叫 GetInsertCommand 和修改 CommandTimeout 值,然後在 上 SqlDataAdapter明確設定該值。
第一次產生 Transact-SQL 語句之後,如果應用程式以任何方式變更語句,就必須明確呼叫 RefreshSchema 。 否則, GetInsertCommand 仍會使用上一個語句中可能不正確的資訊。 當應用程式呼叫 Update 或 GetInsertCommand時,會先產生 Transact-SQL 語句。
產生參數名稱時的預設行為是針對各種參數使用 @p1
、 @p2
等等。
true
useColumnsForParameterNames
傳遞 參數可讓您強制 OleDbCommandBuilder 改為根據數據行名稱產生參數。 只有在符合下列條件時,才會成功:
ParameterNameMaxLength從 GetSchema 方法呼叫傳回並在集合中找到DataSourceInformation的 ,其長度等於或大於產生的參數名稱。
產生的參數名稱符合從 GetSchema 方法呼叫傳回的 中指定的ParameterNamePattern準則,並在集合正則表示式中找到DataSourceInformation。
ParameterMarkerFormat指定從 GetSchema 方法呼叫傳回在集合中找到的 DataSourceInformation 。
如需詳細資訊,請參閱使用 CommandBuilder 產生命令。