IDatabaseMetaData.GetIndexInfo(String, String, String, Boolean, Boolean) 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.
Retrieves a description of the given table's indices and statistics.
[Android.Runtime.Register("getIndexInfo", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZ)Ljava/sql/ResultSet;", "GetGetIndexInfo_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_ZZHandler:Java.Sql.IDatabaseMetaDataInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Sql.IResultSet? GetIndexInfo (string? catalog, string? schema, string? table, bool unique, bool approximate);
[<Android.Runtime.Register("getIndexInfo", "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZZ)Ljava/sql/ResultSet;", "GetGetIndexInfo_Ljava_lang_String_Ljava_lang_String_Ljava_lang_String_ZZHandler:Java.Sql.IDatabaseMetaDataInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetIndexInfo : string * string * string * bool * bool -> Java.Sql.IResultSet
Parameters
- catalog
- String
a catalog name; must match the catalog name as it is stored in this database; "" retrieves those without a catalog; <code>null</code> means that the catalog name should not be used to narrow the search
- schema
- String
a schema name; must match the schema name as it is stored in this database; "" retrieves those without a schema; <code>null</code> means that the schema name should not be used to narrow the search
- table
- String
a table name; must match the table name as it is stored in this database
- unique
- Boolean
when true, return only indices for unique values; when false, return indices regardless of whether unique or not
- approximate
- Boolean
when true, result is allowed to reflect approximate or out of data values; when false, results are requested to be accurate
Returns
<code>ResultSet</code> - each row is an index column description
- Attributes
Exceptions
a database error occurred.
Remarks
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.