dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteParameter Class / DbType Property
Example

DbType Property
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 SQLiteType and DbType are linked. Therefore, setting the changes the SQLiteType to a supporting SQLiteType.

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

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