to top
Android APIs
public class

SQLWarning

extends SQLException
implements Serializable
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.sql.SQLException
         ↳ java.sql.SQLWarning
Known Direct Subclasses

Class Overview

An exception class that holds information about Database access warnings.

Summary

Public Constructors
SQLWarning()
Creates an SQLWarning object.
SQLWarning(String theReason)
Creates an SQLWarning object.
SQLWarning(String theReason, String theSQLState)
Creates an SQLWarning object.
SQLWarning(String theReason, String theSQLState, int theErrorCode)
Creates an SQLWarning object.
SQLWarning(Throwable cause)
Creates an SQLWarning object.
SQLWarning(String reason, Throwable cause)
Creates an SQLWarning object.
SQLWarning(String reason, String SQLState, Throwable cause)
Creates an SQLWarning object.
SQLWarning(String reason, String SQLState, int vendorCode, Throwable cause)
Creates an SQLWarning object.
Public Methods
SQLWarning getNextWarning()
Gets the next SQLWarning chained to this SQLWarning object.
void setNextWarning(SQLWarning w)
Chains a supplied SQLWarning to this SQLWarning.
[Expand]
Inherited Methods
From class java.sql.SQLException
From class java.lang.Throwable
From class java.lang.Object
From interface java.lang.Iterable

Public Constructors

public SQLWarning ()

Added in API level 1

Creates an SQLWarning object. The reason string is set to null, the SQLState string is set to null and the error code is set to 0.

public SQLWarning (String theReason)

Added in API level 1

Creates an SQLWarning object. The reason string is set to the given reason string, the SQLState string is set to null and the error code is set to 0.

Parameters
theReason the reason why this warning is issued.

public SQLWarning (String theReason, String theSQLState)

Added in API level 1

Creates an SQLWarning object. The reason string is set to the given reason string, the SQLState string is set to the given SQLState string and the error code is set to 0.

Parameters
theReason the reason why this warning is issued.
theSQLState the string to use as the SQLState string.

public SQLWarning (String theReason, String theSQLState, int theErrorCode)

Added in API level 1

Creates an SQLWarning object. The reason string is set to the given reason string, the SQLState string is set to the given SQLState string and the error code is set to the given error code value.

Parameters
theReason the reason why this warning is issued.
theSQLState the X/Open standard specifc error code.
theErrorCode a vendor specific error code.

public SQLWarning (Throwable cause)

Added in API level 9

Creates an SQLWarning object. The Reason string is set to null, the SQLState string is set to null and the Error Code is set to 0, cause is set to cause.

public SQLWarning (String reason, Throwable cause)

Added in API level 9

Creates an SQLWarning object. The Reason string is set to reason, the SQLState string is set to null and the Error Code is set to 0, cause is set to the given cause

public SQLWarning (String reason, String SQLState, Throwable cause)

Added in API level 9

Creates an SQLWarning object. The Reason string is set to reason, the SQLState string is set to given SQLState and the Error Code is set to 0, cause is set to the given cause

public SQLWarning (String reason, String SQLState, int vendorCode, Throwable cause)

Added in API level 9

Creates an SQLWarning object. The Reason string is set to reason, the SQLState string is set to given SQLState and the Error Code is set to vendorCode, cause is set to the given cause

Public Methods

public SQLWarning getNextWarning ()

Added in API level 1

Gets the next SQLWarning chained to this SQLWarning object.

Returns
  • the SQLWarning chained to this SQLWarning. null if no SQLWarning is chained to this SQLWarning.

public void setNextWarning (SQLWarning w)

Added in API level 1

Chains a supplied SQLWarning to this SQLWarning.

Parameters
w the SQLWarning linked to this SQLWarning.