Class SqlCmdParams
Holds the information about the type and value of the parameters passed to the command.
Inheritance
Namespace:
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public class SqlCmdParams : object
Properties
Name | Description |
---|---|
CompareInfo | Sets the CompareInfo object that defines how string comparisons should be performed for this parameter. |
Direction | Sets a value that indicates whether the parameter is input-only, output-only, bidirectional, or a stored procedure return value parameter. |
IsNullable | Sets a value that indicates whether the parameter accepts null values. |
LocaleID | Sets the locale identifier that determines conventions and language for a particular region. |
Offset | Sets the offset to the Value property. |
Precision | Sets the maximum number of digits used to represent the Value property. |
Scale | Sets the number of decimal places to which Value is resolved. |
Size | Sets the maximum size, in bytes, of the data within the column. |
SourceColumn | Sets the name of the source column mapped to the DataSet and used for loading or returning the Value. |
SourceColumnNullMapping | Sets a value which indicates whether the source column is null-able. This allows SqlCommandBuilder to correctly generate Update statements for nullable columns. |
SourceVersion | Sets the DataRowVersion to use when you load Value |
SqlCmpInfo | Specifies the SQL compare options. |
SqlParamDir | Specifies the parameters direction. |
SqlParamType | Specifies the parameter type. |
SqlValue | Sets the value of the parameter as an SQL type. |
SrcVersion | Returns the version of a System.Data.DataRow. |
Type | Sets the SqlDbType of the passed parameter. |
TypeName | Sets the type name for a table-valued parameter. |
UdtTypeName | Sets a string that represents a user-defined type as a parameter. |
Value | The value of the passed parameter. |