SQLiteRawStatement.GetParameterName(Int32) 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.
Return the name of the parameter at the specified index.
[Android.Runtime.Register("getParameterName", "(I)Ljava/lang/String;", "", ApiSince=35)]
public string? GetParameterName (int parameterIndex);
[<Android.Runtime.Register("getParameterName", "(I)Ljava/lang/String;", "", ApiSince=35)>]
member this.GetParameterName : int -> string
Parameters
- parameterIndex
- Int32
The index of the parameter.
Returns
The name of the parameter.
- Attributes
Remarks
Return the name of the parameter at the specified index. Null is returned if there is no such parameter or if the parameter does not have a name.
Java documentation for android.database.sqlite.SQLiteRawStatement.getParameterName(int)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.