SQLWarning.NextWarning Property

Definition

Retrieves the warning chained to this SQLWarning object by setNextWarning. -or- Adds a SQLWarning object to the end of the chain.

public virtual Java.Sql.SQLWarning? NextWarning { [Android.Runtime.Register("getNextWarning", "()Ljava/sql/SQLWarning;", "GetGetNextWarningHandler")] get; [Android.Runtime.Register("setNextWarning", "(Ljava/sql/SQLWarning;)V", "GetSetNextWarning_Ljava_sql_SQLWarning_Handler")] set; }
[<get: Android.Runtime.Register("getNextWarning", "()Ljava/sql/SQLWarning;", "GetGetNextWarningHandler")>]
[<set: Android.Runtime.Register("setNextWarning", "(Ljava/sql/SQLWarning;)V", "GetSetNextWarning_Ljava_sql_SQLWarning_Handler")>]
member this.NextWarning : Java.Sql.SQLWarning with get, set

Property Value

the next SQLException in the chain; null if none

Attributes

Remarks

Property getter documentation:

Retrieves the warning chained to this SQLWarning object by setNextWarning.

Java documentation for java.sql.SQLWarning.getNextWarning().

Property setter documentation:

Adds a SQLWarning object to the end of the chain.

Java documentation for java.sql.SQLWarning.setNextWarning(java.sql.SQLWarning).

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.

Applies to