Click or drag to resize

DBDriverBase.ConvertDBTypeToNETType 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.9.0.0 (5.9.0)
Syntax
public virtual Type ConvertDBTypeToNETType(
	int dbType,
	int precision,
	int scale
)

Parameters

dbType
Type: System.Int32
Type of the db.
precision
Type: System.Int32
The precision.
scale
Type: System.Int32
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