Click or drag to resize
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)
Syntax
public virtual bool DBTypeRequiresInsertValue(
	int dbType
)

Parameters

dbType
Type: SystemInt32
Numeric DBType representation to check

Return Value

Type: Boolean
true if the DBType is handled by the RDBMS automatically.
See Also