OleDbFactory.CreateCommand Method

Definition

Returns a strongly-typed DbCommand instance.

public:
 override System::Data::Common::DbCommand ^ CreateCommand();
public override System.Data.Common.DbCommand CreateCommand ();
override this.CreateCommand : unit -> System.Data.Common.DbCommand
Public Overrides Function CreateCommand () As DbCommand

Returns

A new strongly-typed instance of DbCommand.

Examples

The following code fragment returns a strongly-typed DbCommand instance:

Dim newFactory As OleDbFactory = OleDbFactory.Instance
Dim cmd As DbCommand = newFactory.CreateCommand()
OleDbFactory newFactory = OleDbFactory.Instance;
DbCommand cmd = newFactory.CreateCommand();

Applies to