Table of Contents

Class CommandBuilder.ParameterInfo

Namespace
Dynamicweb.Data
Assembly
Dynamicweb.Data.dll
Represents the parameter information used to create IDbCommand instances.
public class CommandBuilder.ParameterInfo
Inheritance
CommandBuilder.ParameterInfo
Inherited Members

Constructors

ParameterInfo()

Initializes a new instance of the CommandBuilder.ParameterInfo class.
public ParameterInfo()

Properties

DbType

public DbType DbType { get; set; }

Property Value

DbType

IsArrayItem

public bool IsArrayItem { get; set; }

Property Value

bool

Value

public object Value { get; set; }

Property Value

object

Methods

Create(object, DbType, bool)

A CommandBuilder.ParameterInfo from the specified informations.
public static CommandBuilder.ParameterInfo Create(object value, DbType dbType, bool isArrayItem)

Parameters

value object
The value.
dbType DbType
The database data type.
isArrayItem bool
if set to true the value is an array item.

Returns

CommandBuilder.ParameterInfo
A CommandBuilder.ParameterInfo that represents the specified informations.
To top