SqliteParameterCollection.GetParameter 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
GetParameter(String) |
Gets a parameter with the specified name. |
GetParameter(Int32) |
Gets a parameter at the specified index. |
GetParameter(String)
Gets a parameter with the specified name.
protected override System.Data.Common.DbParameter GetParameter (string parameterName);
override this.GetParameter : string -> System.Data.Common.DbParameter
Protected Overrides Function GetParameter (parameterName As String) As DbParameter
Parameters
- parameterName
- String
The name of the parameter.
Returns
The parameter.
Applies to
GetParameter(Int32)
Gets a parameter at the specified index.
protected override System.Data.Common.DbParameter GetParameter (int index);
override this.GetParameter : int -> System.Data.Common.DbParameter
Protected Overrides Function GetParameter (index As Integer) As DbParameter
Parameters
- index
- Int32
The zero-based index of the parameter.
Returns
The parameter.