SqliteParameterCollection.SetParameter Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SetParameter(Int32, DbParameter) |
Sets the parameter at the specified index. |
SetParameter(String, DbParameter) |
Sets the parameter with the specified name. |
SetParameter(Int32, DbParameter)
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
Sets the parameter at the specified index.
protected override void SetParameter (int index, System.Data.Common.DbParameter value);
override this.SetParameter : int * System.Data.Common.DbParameter -> unit
Protected Overrides Sub SetParameter (index As Integer, value As DbParameter)
Parameters
- index
- Int32
The zero-based index of the parameter to set.
- value
- DbParameter
The parameter. Must be a SqliteParameter.
Applies to
SetParameter(String, DbParameter)
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
- Source:
- SqliteParameterCollection.cs
Sets the parameter with the specified name.
protected override void SetParameter (string parameterName, System.Data.Common.DbParameter value);
override this.SetParameter : string * System.Data.Common.DbParameter -> unit
Protected Overrides Sub SetParameter (parameterName As String, value As DbParameter)
Parameters
- parameterName
- String
The name of the parameter to set.
- value
- DbParameter
The parameter. Must be a SqliteParameter.