DBDriverBase.GetCompatibleDBTypeDefinitionsForNetType 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.DBDriverCoreAssembly: SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.0.0.0 (5.0.0)
Syntaxpublic List<DBTypeDefinition> GetCompatibleDBTypeDefinitionsForNetType(
Type netType,
int precision,
int scale,
int length
)
Public Function GetCompatibleDBTypeDefinitionsForNetType (
netType As Type,
precision As Integer,
scale As Integer,
length As Integer
) As List(Of DBTypeDefinition)
Parameters
- netType
- Type: System.Type
Type of the net. - precision
- Type: System.Int32
The precision. - scale
- Type: System.Int32
The scale. - length
- Type: System.Int32
The length.
Return Value
Type:
List<DBTypeDefinition>List with 0 or more DBTypeDefinition instances filled with the right DB type information based, on the data passed in
RemarksDefault implementation creates DBTypeDefinition instances based on the lookup tables in the driver.
See Also