dotConnect for Salesforce Documentation
Devart.Data.Salesforce Namespace / SalesforceParameter Class / DbType Property
Example

DbType Property (SalesforceParameter)
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.
Remarks
The SalesforceType and DbType are linked. Therefore, setting the changes the SalesforceType to a supporting SalesforceType.

For a list of the supported data types, see the appropriate SalesforceType member.

Example
The following example creates a SalesforceParameter and sets some of its properties, including the DbType property.
public void CreateSalesforceParameter()
{
  SalesforceParameter myParameter = new SalesforceParameter();
  myParameter.ParameterName = "DName";
  myParameter.DbType = DbType.String;
  myParameter.Direction = ParameterDirection.Output;
  myParameter.Size = 15;
}
Public Sub CreateSalesforceParameter()
  Dim myParameter As New SalesforceParameter()
  myParameter.ParameterName = "DName"
  myParameter.DbType = DbType.String
  myParameter.Direction = ParameterDirection.Output
  myParameter.Size = 15
End Sub
See Also