public enum SqlFeatureSupport extends Enum<SqlFeatureSupport>
Enum Constant and Description |
---|
BOOKMARK_QUERY
a page selected to mark the reader's place
|
CONN_HOLDABILITY
supports holdability at the connection level
|
LIMIT
Native syntax of SQL vendor support some form of limiting query results?
|
LIMIT_OFF_SET
Native syntax of SQL vendor support some form of offset query results?
|
PAGING_ROUNDTRIP
check if database needs a new round trip to get total of records
|
ROWNUM
Native syntax of SQL vendor support some form of enumerate the rows results?
|
SEQUENCE
Mechanism for generating unique identification
|
STMT_HOLDABILITY
supports holdability at the statement level
|
UNKNOW |
Modifier and Type | Method and Description |
---|---|
static SqlFeatureSupport |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlFeatureSupport[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlFeatureSupport UNKNOW
public static final SqlFeatureSupport LIMIT
public static final SqlFeatureSupport LIMIT_OFF_SET
public static final SqlFeatureSupport ROWNUM
public static final SqlFeatureSupport CONN_HOLDABILITY
public static final SqlFeatureSupport STMT_HOLDABILITY
public static final SqlFeatureSupport BOOKMARK_QUERY
public static final SqlFeatureSupport PAGING_ROUNDTRIP
public static final SqlFeatureSupport SEQUENCE
public static SqlFeatureSupport[] values()
for (SqlFeatureSupport c : SqlFeatureSupport.values()) System.out.println(c);
public static SqlFeatureSupport valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2012–2020 jkniv, copyleft code. All rights reserved.