Java.Sql.IDatabaseMetaData.SupportsResultSetConcurrency Method
Determines whether there is support for a given concurrency style for the given ResultSet.

Syntax

[Android.Runtime.Register("supportsResultSetConcurrency", "(II)Z", "GetSupportsResultSetConcurrency_IIHandler:Java.Sql.IDatabaseMetaDataInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public bool SupportsResultSetConcurrency (int type, int concurrency)

Parameters

type
the ResultSet type, as defined in java.sql.ResultSet:
  • ResultSet.TYPE_FORWARD_ONLY
  • ResultSet.TYPE_SCROLL_INSENSITIVE
  • ResultSet.TYPE_SCROLL_SENSITIVE
concurrency
a concurrency type, which may be one of ResultSet.CONCUR_READ_ONLY or ResultSet.CONCUR_UPDATABLE.

Returns

Documentation for this section has not yet been entered.

Exceptions

TypeReason
Java.Sql.SQLExceptiona database error occurred.

Remarks

Determines whether there is support for a given concurrency style for the given ResultSet.

[Android Documentation]

Requirements

Namespace: Java.Sql
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1