OracleCommandBuilder.GetInsertCommand メソッド

定義

データベースで挿入処理を実行するための、自動生成された OracleCommand オブジェクトを取得します。

オーバーロード

GetInsertCommand(Boolean)

データベースで挿入処理を実行するための、自動生成された OracleCommand オブジェクトを取得します。

GetInsertCommand()

データベースで挿入処理を実行するための、自動生成された OracleCommand オブジェクトを取得します。

注釈

メソッドは GetInsertCommand 、実行するオブジェクトを返すので、情報またはトラブルシューティングの OracleCommand 目的で使用できます。

変更されたコマンドの基礎として を使用 GetInsertCommand することもできます。 たとえば、 を呼び出 GetInsertCommand して値を CommandText 変更し、 に明示的に OracleDataAdapter設定します。

SQL ステートメントは、アプリケーションが または GetInsertCommandUpdate呼び出すときに最初に生成されます。

詳細については、「CommandBuilder でのコマンドの生成」を参照してください。

GetInsertCommand(Boolean)

データベースで挿入処理を実行するための、自動生成された OracleCommand オブジェクトを取得します。

public:
 System::Data::OracleClient::OracleCommand ^ GetInsertCommand(bool useColumnsForParameterNames);
public System.Data.OracleClient.OracleCommand GetInsertCommand (bool useColumnsForParameterNames);
override this.GetInsertCommand : bool -> System.Data.OracleClient.OracleCommand
Public Function GetInsertCommand (useColumnsForParameterNames As Boolean) As OracleCommand

パラメーター

useColumnsForParameterNames
Boolean

可能であれば、列名に一致するパラメーター名を生成する場合は truefalseを使用して、、@p2、などを生成@p1します。

戻り値

挿入を実行するための自動生成された OracleCommand オブジェクト。

注釈

メソッドは GetInsertCommand 、実行するオブジェクトを返すので、情報またはトラブルシューティングの OracleCommand 目的で使用できます。

変更されたコマンドの基礎として を使用 GetInsertCommand することもできます。 たとえば、 を呼び出 GetInsertCommand して値を CommandText 変更し、 に明示的に OracleDataAdapter設定します。

SQL ステートメントは、アプリケーションが または GetInsertCommandUpdate呼び出すときに最初に生成されます。

パラメーター名を生成するときの既定の動作では、さまざまなパラメーターに対して 、@p2、、 などを使用@p1します。 パラメーターをuseColumnsForParameterNames渡すとtrue、 を強制的OracleCommandBuilderに列名に基づいて生成できます。 これは、次の条件が満たされた場合にのみ成功します。

詳細については、「CommandBuilder でのコマンドの生成」を参照してください。

適用対象

GetInsertCommand()

データベースで挿入処理を実行するための、自動生成された OracleCommand オブジェクトを取得します。

public:
 System::Data::OracleClient::OracleCommand ^ GetInsertCommand();
public System.Data.OracleClient.OracleCommand GetInsertCommand ();
member this.GetInsertCommand : unit -> System.Data.OracleClient.OracleCommand
override this.GetInsertCommand : unit -> System.Data.OracleClient.OracleCommand
Public Function GetInsertCommand () As OracleCommand

戻り値

挿入を実行するための自動生成された OracleCommand オブジェクト。

注釈

メソッドは GetInsertCommand 、実行するオブジェクトを返すので、情報またはトラブルシューティングの OracleCommand 目的で使用できます。

変更されたコマンドの基礎として を使用 GetInsertCommand することもできます。 たとえば、 を呼び出 GetInsertCommand して値を CommandText 変更し、 に明示的に OracleDataAdapter設定します。

SQL ステートメントは、アプリケーションが または GetInsertCommandUpdate呼び出すときに最初に生成されます。

詳細については、「CommandBuilder でのコマンドの生成」を参照してください。

適用対象