Click or drag to resize
DBTypeDefinition Constructor (Int32, String, Type, String, String, String, Int32, Int32, Int32, Boolean, Boolean)
Initializes a new instance of the DBTypeDefinition class.

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 DBTypeDefinition(
	int dbType,
	string dbTypeAsString,
	Type dbTypeAsNETType,
	string udtName,
	string udtCatalog,
	string udtOwner,
	int length,
	int precision,
	int scale,
	bool requiresInsertValue,
	bool netTypeSetByUdt
)

Parameters

dbType
Type: SystemInt32
Type of the db.
dbTypeAsString
Type: SystemString
The db type as string.
dbTypeAsNETType
Type: SystemType
Type of the db type as NET.
udtName
Type: SystemString
Name of the udt.
udtCatalog
Type: SystemString
The udt catalog.
udtOwner
Type: SystemString
The udt owner.
length
Type: SystemInt32
The length.
precision
Type: SystemInt32
The precision.
scale
Type: SystemInt32
The scale.
requiresInsertValue
Type: SystemBoolean
if set to true [requires insert value].
netTypeSetByUdt
Type: SystemBoolean
if set to true [net type set by udt].
See Also