Class java.sql.NullData
All Packages Class Hierarchy This Package Previous Next Index
Class java.sql.NullData
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.sql.SQLException
|
+----java.sql.SQLWarning
|
+----java.sql.NullData
- public class NullData
- extends SQLWarning
When a SQL NULL value is read via getXXX or getObject methods a
NullData warning is reported.
The SQLstate for a NullData is set to "01J01", a vendor specific state.
-
index
- The index of the column or parameter that was NULL
This may be -1 if the column or parameter index is unknown, in
which case the parameter field should be ignored.
-
parameter
- True if the NULL value was a parameter; false otherwise.
-
NullData()
-
index
public int index
- The index of the column or parameter that was NULL
This may be -1 if the column or parameter index is unknown, in
which case the parameter field should be ignored.
parameter
public boolean parameter
- True if the NULL value was a parameter; false otherwise.
NullData
public NullData()
All Packages Class Hierarchy This Package Previous Next Index