Creates a new instance of the ConstantExpression class.
Namespace: ININ.IceLib.Configuration.DialerAssembly: ININ.IceLib.Dialer (in ININ.IceLib.Dialer.dll) Version: 0.0.0.0 (22.3.0.208)
Syntax
C# |
---|
public ConstantExpression( Object value, OleDbType dataType, int size, int scale, int precision ) |
Visual Basic |
---|
Public Sub New ( _ value As Object, _ dataType As OleDbType, _ size As Integer, _ scale As Integer, _ precision As Integer _ ) |
Parameters
- value
- Type: System..::..Object
The value of the constant.
- dataType
- Type: System.Data.OleDb..::..OleDbType
The datatype of the constant.
- size
- Type: System..::..Int32
The size of the constant. This may be zero unless the constant is a variable type (ex. varchar).
- scale
- Type: System..::..Int32
The scale of the constant. This may be zero unless the constant is a decimal type.
- precision
- Type: System..::..Int32
The precision of the constant. This may be zero unless the constant is a decimal type.