Creates a new instance of the DBColumn class.

Namespace: ININ.IceLib.Configuration.Dialer.DataTypes
Assembly: ININ.IceLib.Dialer (in ININ.IceLib.Dialer.dll) Version: 0.0.0.0 (22.3.0.208)

Syntax

C#
public DBColumn(
	string _name,
	OleDbType _dataType,
	int _size,
	int _scale,
	int _precision
)
Visual Basic
Public Sub New ( _
	_name As String, _
	_dataType As OleDbType, _
	_size As Integer, _
	_scale As Integer, _
	_precision As Integer _
)

Parameters

_name
Type: System..::..String
The name of the column.
_dataType
Type: System.Data.OleDb..::..OleDbType
The datatype of the column.
_size
Type: System..::..Int32
String and binary types only. The maximum number of characters/bytes.
_scale
Type: System..::..Int32
Numeric types only. The maximum number of digits to the right of the decimal point.
_precision
Type: System..::..Int32
Numeric types only. The maximum number of digits.

See Also