OdbcFactory.CreateParameter Método

Definição

Retorna uma instância de DbParameter fortemente tipada.Returns a strongly-typed DbParameter instance.

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

Retornos

DbParameter

Uma nova instância fortemente tipada de DbParameter.A new strongly-typed instance of DbParameter.

Exemplos

O fragmento de código a seguir retorna uma instância fortemente tipada DbParameter :The following code fragment returns a strongly-typed DbParameter instance:

Dim newFactory As OdbcFactory = OdbcFactory.Instance  
Dim cmd As DbParameter = newFactory.CreateParameter()  
OdbcFactory newFactory = OdbcFactory.Instance;  
DbParameter cmd = newFactory.CreateParameter();  

Aplica-se a