OracleCommandBuilder Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the OracleCommandBuilder.
Overloads
OracleCommandBuilder() |
Initializes a new instance of the OracleCommandBuilder. |
OracleCommandBuilder(OracleDataAdapter) |
Initializes a new instance of the OracleCommandBuilder class with the associated OracleDataAdapter object. |
OracleCommandBuilder()
Initializes a new instance of the OracleCommandBuilder.
public:
OracleCommandBuilder();
public OracleCommandBuilder ();
Public Sub New ()
Remarks
The OracleCommandBuilder registers itself as a listener for RowUpdating events that are generated by the OracleDataAdapter specified in this property.
When you create a new instance of OracleCommandBuilder, any existing OracleCommandBuilder associated with this OracleDataAdapter is released.
Applies to
OracleCommandBuilder(OracleDataAdapter)
Initializes a new instance of the OracleCommandBuilder class with the associated OracleDataAdapter object.
public:
OracleCommandBuilder(System::Data::OracleClient::OracleDataAdapter ^ adapter);
public OracleCommandBuilder (System.Data.OracleClient.OracleDataAdapter adapter);
new System.Data.OracleClient.OracleCommandBuilder : System.Data.OracleClient.OracleDataAdapter -> System.Data.OracleClient.OracleCommandBuilder
Public Sub New (adapter As OracleDataAdapter)
Parameters
- adapter
- OracleDataAdapter
An OracleDataAdapter object to associate with this OracleCommandBuilder.
Remarks
The OracleCommandBuilder registers itself as a listener for RowUpdating events that are generated by the OracleDataAdapter specified in this property.
When you create a new instance of OracleCommandBuilder, any existing OracleCommandBuilder associated with this OracleDataAdapter is released.