DBDriverBaseConvertDBTypeToNETType Method |
Converts the passed in db type to its .NET type
Namespace:
SD.LLBLGen.Pro.DBDriverCore
Assembly:
SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax public virtual Type ConvertDBTypeToNETType(
int dbType,
int precision,
int scale
)
Public Overridable Function ConvertDBTypeToNETType (
dbType As Integer,
precision As Integer,
scale As Integer
) As Type
Parameters
- dbType
- Type: SystemInt32
Type of the db. - precision
- Type: SystemInt32
The precision. - scale
- Type: SystemInt32
The scale.
Return Value
Type:
Type
conversion result of dbtype to .NET type conversion
Remarks Precision and scale aren't used in the default version, though can be required for some database drivers like ODP.NET based drivers for oracle.
See Also