DBTypeDefinition Constructor (Int32, String, Type, String, String, String, Int32, Int32, Int32, Boolean, Boolean) |
Namespace:
SD.LLBLGen.Pro.DBDriverCore
Assembly:
SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.6.0.0 (5.6.19.0117)
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
)
Public Sub New (
dbType As Integer,
dbTypeAsString As String,
dbTypeAsNETType As Type,
udtName As String,
udtCatalog As String,
udtOwner As String,
length As Integer,
precision As Integer,
scale As Integer,
requiresInsertValue As Boolean,
netTypeSetByUdt As Boolean
)
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