dotConnect for Salesforce Marketing Cloud Documentation
Devart.Data Namespace / SqlShimParameter Class / DbType Property
Example

In This Topic
DbType Property (SqlShimParameter)
In This Topic
Gets or sets the System.Data.DbType of the parameter.
Syntax
'Declaration
 
Public Overrides Property DbType As DbType
 

Property Value

One of the System.Data.DbType values. The default value is System.String.
Example
The following example creates a new SqlShimParameter and sets some of its properties.
public void CreateExactTargetParameter()
{
  ExactTargetParameter myParameter = new ExactTargetParameter();
  myParameter.ParameterName = "Name";
  myParameter.DbType = DbType.VarChar;
  myParameter.Direction = ParameterDirection.Input;
  myParameter.Size = 15;
}
Public Sub CreateExactTargetParameter()
  Dim myParameter As New ExactTargetParameter()
  myParameter.ParameterName = "Name"
  myParameter.DbType = DbType.VarChar
  myParameter.Direction = ParameterDirection.Input
  myParameter.Size = 15
End Sub
See Also