Click or drag to resize
IBindParameter Interface
An indexed bind parameter in a IStatement.

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public interface IBindParameter

The IBindParameter type exposes the following members.

Methods
  NameDescription
Public methodBind(Byte)
Binds the parameter to a byte array.
Public methodBind(Double)
Binds the parameter to a double.
Public methodBind(Int32)
Binds the parameter to an int.
Public methodBind(Int64)
Binds the parameter to a long.
Public methodBind(String)
Binds the parameter to a string.
Public methodBindNull
Binds the parameter to null.
Public methodBindZeroBlob
Binds the parameter to a blob of length N that is filled with zeroes. Zeroblobs are intended to serve as placeholders for BLOBs whose content is later written using OpenBlob(String, String, String, Int64, Boolean).
Top
Extension Methods
  NameDescription
Public Extension MethodBind(Boolean)Overloaded.
Bind the parameter to an Boolean.
(Defined by BindParameter.)
Public Extension MethodBind(TimeSpan)Overloaded.
Bind the parameter to an TimeSpan.
(Defined by BindParameter.)
Public Extension MethodBind(DateTime)Overloaded.
Bind the parameter to an DateTime.
(Defined by BindParameter.)
Public Extension MethodBind(DateTimeOffset)Overloaded.
Bind the parameter to an DateTimeOffset.
(Defined by BindParameter.)
Public Extension MethodBind(Decimal)Overloaded.
Bind the parameter to an Decimal.
(Defined by BindParameter.)
Public Extension MethodBind(Guid)Overloaded.
Bind the parameter to an Guid.
(Defined by BindParameter.)
Public Extension MethodBind(Stream)Overloaded.
Bind the parameter to an Stream.
(Defined by BindParameter.)
Public Extension MethodBind(Uri)Overloaded.
Bind the parameter to a Uri.
(Defined by BindParameter.)
Public Extension MethodBind(Object)Overloaded.
Bind the parameter to a value based upon its runtime type.
(Defined by BindParameter.)
Public Extension MethodBind(ISQLiteValue)Overloaded.
Bind the parameter to an ISQLiteValue.
(Defined by BindParameter.)
Top
Properties
  NameDescription
Public propertyName
The bind paramter name.
Top
See Also