Click or drag to resize
StatementBind Method
Binds the position indexed values in values to the corresponding bind parameters in This.

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public static void Bind(
	this IStatement This,
	params Object[] values
)

Parameters

This
Type: SQLitePCL.prettyIStatement
The statement.
values
Type: SystemObject
The position indexed values to bind.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IStatement. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ArgumentException If the Type of the value is not supported -or- A non-readable stream is provided as a value.
Remarks
Bind parameters may be , any numeric type, or an instance of String, byte[], or Stream.
See Also