javax.xml.xquery
Interface XQConstants


public interface XQConstants

Author:
Michael Stark

Field Summary
static int HOLDTYPE_CLOSE_CURSORS_AT_COMMIT
          The constant indicating that the result sequences must be closed when the commit on the connection is called.
static int HOLDTYPE_HOLD_CURSORS_OVER_COMMIT
          The constant indicating that the result sequences must be preserved when the commit on the connection is called.
static int LANGTYPE_XQUERY
          The constant indicating that the expression language used in XQConnection.prepareExpression and XQExpression.execute is XQuery (any version).
static int LANGTYPE_XQUERYX
          The constant indicating that the expression language used in XQConnection.prepareExpression and XQExpression.execute is XQueryX.
static int RESULTTYPE_READ_ONLY
          The constant indicating that the result sequence is ready only and cannot be updated.
static int RESULTTYPE_UPDATABLE
          The constant indicating that the result sequence is updatable.
static int SCROLLTYPE_FORWARD_ONLY
          The constant indicating that the result sequence can only be scrolled forward.
static int SCROLLTYPE_SCROLLABLE
          The constant indicating that the result sequence can be scrolled forward or backward and is insensitive to any updates done on the underlying objects.
static int VALIDATION_LAX
          The constant indicating the the Validation mode for expression evaluation is lax.
static int VALIDATION_SKIP
          The constant indicating the the Validation mode for expression evaluation is skip.
static int VALIDATION_STRICT
          The constant indicating the the Validation mode for expression evaluation is strict.
static int XMLSPACE_PRESERVE
          The constant indicating the the XML space policy for expression evaluation is to preserve white spaces.
static int XMLSPACE_STRIP
          The constant indicating the the XML space policy for expression evaluation is to strip white spaces.
 

Field Detail

HOLDTYPE_CLOSE_CURSORS_AT_COMMIT

static final int HOLDTYPE_CLOSE_CURSORS_AT_COMMIT
The constant indicating that the result sequences must be closed when the commit on the connection is called.

See Also:
Constant Field Values

HOLDTYPE_HOLD_CURSORS_OVER_COMMIT

static final int HOLDTYPE_HOLD_CURSORS_OVER_COMMIT
The constant indicating that the result sequences must be preserved when the commit on the connection is called.

See Also:
Constant Field Values

LANGTYPE_XQUERY

static final int LANGTYPE_XQUERY
The constant indicating that the expression language used in XQConnection.prepareExpression and XQExpression.execute is XQuery (any version).

See Also:
Constant Field Values

LANGTYPE_XQUERYX

static final int LANGTYPE_XQUERYX
The constant indicating that the expression language used in XQConnection.prepareExpression and XQExpression.execute is XQueryX.

See Also:
Constant Field Values

RESULTTYPE_READ_ONLY

static final int RESULTTYPE_READ_ONLY
The constant indicating that the result sequence is ready only and cannot be updated.

See Also:
Constant Field Values

RESULTTYPE_UPDATABLE

static final int RESULTTYPE_UPDATABLE
The constant indicating that the result sequence is updatable.

See Also:
Constant Field Values

SCROLLTYPE_FORWARD_ONLY

static final int SCROLLTYPE_FORWARD_ONLY
The constant indicating that the result sequence can only be scrolled forward.

See Also:
Constant Field Values

SCROLLTYPE_SCROLLABLE

static final int SCROLLTYPE_SCROLLABLE
The constant indicating that the result sequence can be scrolled forward or backward and is insensitive to any updates done on the underlying objects.

See Also:
Constant Field Values

VALIDATION_LAX

static final int VALIDATION_LAX
The constant indicating the the Validation mode for expression evaluation is lax.

See Also:
Constant Field Values

VALIDATION_SKIP

static final int VALIDATION_SKIP
The constant indicating the the Validation mode for expression evaluation is skip.

See Also:
Constant Field Values

VALIDATION_STRICT

static final int VALIDATION_STRICT
The constant indicating the the Validation mode for expression evaluation is strict.

See Also:
Constant Field Values

XMLSPACE_PRESERVE

static final int XMLSPACE_PRESERVE
The constant indicating the the XML space policy for expression evaluation is to preserve white spaces.

See Also:
Constant Field Values

XMLSPACE_STRIP

static final int XMLSPACE_STRIP
The constant indicating the the XML space policy for expression evaluation is to strip white spaces.

See Also:
Constant Field Values