| DBDriverBaseDBTypeRequiresInsertValue Method  | 
 
            Returns true if the specified type requires a value specified in Insert queries. Not all RDBMS's require for each type a value. F.e. SqlServer
            doesn't require a value for Timestamp types, SqlServer will insert a value automatically.
            
 
    Namespace: 
   SD.LLBLGen.Pro.DBDriverCore
    Assembly:
   SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.3.0.0 (5.3.0)
Syntaxpublic virtual bool DBTypeRequiresInsertValue(
	int dbType
)
Public Overridable Function DBTypeRequiresInsertValue ( 
	dbType As Integer
) As Boolean
Parameters
- dbType
 - Type: SystemInt32
Numeric DBType representation to check 
Return Value
Type: 
Booleantrue if the DBType is handled by the RDBMS automatically.
See Also