Class QueryParameter
A parameter used in a query
Inheritance
object
QueryParameter
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ETLBox.ControlFlow
Assembly: ETLBox.dll
Syntax
public class QueryParameter
Constructors
QueryParameter()
Declaration
public QueryParameter()
QueryParameter(object)
Declaration
public QueryParameter(object value)
Parameters
Type | Name | Description |
---|---|---|
object | value |
QueryParameter(string, object)
Declaration
public QueryParameter(string name, object value)
Parameters
Type | Name | Description |
---|---|---|
string | name | |
object | value |
QueryParameter(string, string, object)
Declaration
public QueryParameter(string name, string type, object value)
Parameters
Type | Name | Description |
---|---|---|
string | name | |
string | type | |
object | value |
Properties
DBSize
Declaration
public int DBSize { get; }
Property Value
Type | Description |
---|---|
int |
DBType
The database type parsed from the parameter type
Declaration
public DbType? DBType { get; }
Property Value
Type | Description |
---|---|
System.Data.DbType? |
Name
Name of the parameter
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
The sql parameter type (e.g. "INT")
Declaration
public string Type { get; set; }
Property Value
Type | Description |
---|---|
string |
Value
The value of the parameter
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
object |