dotConnect for Zoho CRM 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
    public override DbType DbType {get; set;}

    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 CreateZohoParameter()
    {
      ZohoParameter myParameter = new ZohoParameter();
      myParameter.ParameterName = "Name";
      myParameter.DbType = DbType.VarChar;
      myParameter.Direction = ParameterDirection.Input;
      myParameter.Size = 15;
    }
    Public Sub CreateZohoParameter()
      Dim myParameter As New ZohoParameter()
      myParameter.ParameterName = "Name"
      myParameter.DbType = DbType.VarChar
      myParameter.Direction = ParameterDirection.Input
      myParameter.Size = 15
    End Sub
    See Also