Click or drag to resize
DBDriverBaseGetCompatibleDBTypeDefinitionsForNetType Method (Type, Int32, Int32, Int32)
Gets a List of all DBTypeDefinition instances which are compatible with the type specific information passed in. The first DBTypeSpecification is the default type specification to user.

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 List<DBTypeDefinition> GetCompatibleDBTypeDefinitionsForNetType(
	Type netType,
	int precision,
	int scale,
	int length
)

Parameters

netType
Type: SystemType
Type of the net.
precision
Type: SystemInt32
The precision.
scale
Type: SystemInt32
The scale.
length
Type: SystemInt32
The length.

Return Value

Type: ListDBTypeDefinition
List with 0 or more DBTypeDefinition instances filled with the right DB type information based, on the data passed in
Remarks
Default implementation creates DBTypeDefinition instances based on the lookup tables in the driver.
See Also