Public MustOverride Function GetDatabaseTypeForDbType( _ ByVal dbType As Nullable(Of DbType), _ ByVal isLongText As Boolean _ ) As String
Dim instance As BaseDatabaseProvider Dim dbType As Nullable(Of DbType) Dim isLongText As Boolean Dim value As String value = instance.GetDatabaseTypeForDbType(dbType, isLongText)
public abstract string GetDatabaseTypeForDbType( Nullable<DbType> dbType, bool isLongText )
public: abstract string* GetDatabaseTypeForDbType( Nullable<DbType> dbType, bool isLongText )
public: abstract String^ GetDatabaseTypeForDbType( Nullable<DbType> dbType, bool isLongText )
Parameters
- dbType
- Specifies the data type of a column
- isLongText
- If true this represents a long text type like TEXT, NTEXT, MEMO etc