Click or drag to resize
DBTypeDefinitionSetDBType Method (Int32, DBDriverBase, String, String, String, Type, Int32, Int32, Int32)
Sets the DBtype of this typedefinition and all values related to it which are retrievable from the driver specified.

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 void SetDBType(
	int newDBType,
	DBDriverBase driverToUse,
	string udtCatalog,
	string udtOwner,
	string udtName,
	Type udtNETType,
	int length,
	int precision,
	int scale
)

Parameters

newDBType
Type: SystemInt32
New type of the DB.
driverToUse
Type: SD.LLBLGen.Pro.DBDriverCoreDBDriverBase
The driver to use.
udtCatalog
Type: SystemString
The udt catalog if the type is an udt type, otherwise string.Empty.
udtOwner
Type: SystemString
The udt owner if the type is an udt type, otherwise string.Empty.
udtName
Type: SystemString
Name of the udt if the type is an udt type, otherwise string.Empty.
udtNETType
Type: SystemType
.NET Type of the udt, or null if the type isn't an UDT type.
length
Type: SystemInt32
The length.
precision
Type: SystemInt32
The precision.
scale
Type: SystemInt32
The scale.
See Also