|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use XQException | |
---|---|
com.xqj2 | |
javax.xml.xquery | |
net.xqj.basex |
Uses of XQException in com.xqj2 |
---|
Methods in com.xqj2 that throw XQException | ||
---|---|---|
|
XQConnection2.createModuleProxy(String namespaceUri,
String moduleUri,
Class<T> clazz)
Creates a Module Proxy, a Java Facade of an XQuery Library Module. |
|
|
XQConnection2.createModuleProxy(String namespaceUri,
String moduleUri,
Class<T> clazz,
XQStaticContext properties)
Creates a Module Proxy, a Java Facade of an XQuery Library Module. |
|
int |
XQMetaData2.getXQJ2MajorVersion()
Gets the major version number of XQJ2 specification supported by this implementation. |
|
int |
XQMetaData2.getXQJ2MinorVersion()
Gets the minor version number of XQJ2 specification supported by this implementation. |
|
String |
XQMetaData2.getXQJ2Version()
Gets the full version of XQJ2 specification supported by this implementation. |
|
void |
XQConnection2.insertItem(String uri,
XQItem item,
XQInsertOptions options)
Inserts an item into the XML DataSource with a given URI. |
|
boolean |
XQMetaData2.isXQuery30Supported()
Query if XQuery 3.0 is supported by this data source. |
|
boolean |
XQMetaData2.isXQueryFullTextSupported()
Query if XQuery 1.0 Full Text extensions are supported by this data source. |
|
boolean |
XQMetaData2.isXQueryUpdateFacilitySupported()
Query if XQuery 1.0 Update Facility extensions are supported by this data source. |
Uses of XQException in javax.xml.xquery |
---|
Subclasses of XQException in javax.xml.xquery | |
---|---|
class |
XQCancelledException
XQCancelledException is an exception to indicate that the
current XQuery processing is cancelled by the application through a
cancel() request. |
class |
XQQueryException
An exception that provides information on errors occurring during the evaluation of an xquery. |
Methods in javax.xml.xquery that return XQException | |
---|---|
XQException |
XQException.getNextException()
Returns the next XQException in the chain or
null if none. |
XQException |
XQConnectionEvent.getXQException()
Retrieves the XQException for this
XQConnectionEvent object. |
Methods in javax.xml.xquery with parameters of type XQException | |
---|---|
void |
XQException.setNextException(XQException next)
Adds an XQException to the chain of exceptions. |
Methods in javax.xml.xquery that throw XQException | |
---|---|
boolean |
XQSequence.absolute(int itempos)
Moves the XQSequence 's position to the given item
number in this object. |
void |
XQSequence.afterLast()
Move to the position after the last item. |
void |
XQSequence.beforeFirst()
Moves to the position before the first item. |
void |
XQDynamicContext.bindAtomicValue(QName varName,
String value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindBoolean(QName varName,
boolean value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindByte(QName varName,
byte value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindDocument(QName varName,
InputStream value,
String baseURI,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindDocument(QName varName,
Reader value,
String baseURI,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindDocument(QName varName,
Source value,
XQItemType type)
Binds a value to the given external variable or the context item from the given Source . |
void |
XQDynamicContext.bindDocument(QName varName,
String value,
String baseURI,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindDocument(QName varName,
XMLStreamReader value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindDouble(QName varName,
double value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindFloat(QName varName,
float value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindInt(QName varName,
int value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindItem(QName varName,
XQItem value)
Binds a value to the given external variable. |
void |
XQDynamicContext.bindLong(QName varName,
long value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindNode(QName varName,
Node value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindObject(QName varName,
Object value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindSequence(QName varName,
XQSequence value)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindShort(QName varName,
short value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQDynamicContext.bindString(QName varName,
String value,
XQItemType type)
Binds a value to the given external variable or the context item. |
void |
XQExpression.cancel()
Attempts to cancel the execution if both the XQuery engine and XQJ driver support aborting the execution of an XQExpression . |
void |
XQPreparedExpression.cancel()
Attempts to cancel the execution if both the XQuery engine and XQJ driver support aborting the execution of an XQPreparedExpression . |
void |
PooledXQConnection.close()
Closes the physical connection that this PooledXQConnection
object represents. |
void |
XQConnection.close()
Closes the connection. |
void |
XQExpression.close()
Closes the expression object and release associated resources. |
void |
XQItem.close()
Close the item and release all the resources associated with this item. |
void |
XQPreparedExpression.close()
Closes the expression object and release all resources associated with this prepared expression. |
void |
XQSequence.close()
Closes the sequence and frees all resources associated with this sequence. |
void |
XQConnection.commit()
Makes all changes made in the current transaction permanent and releases any locks held by the datasource. |
int |
XQSequence.count()
Returns a number indicating the number of items in the sequence. |
XQItemType |
XQDataFactory.createAtomicType(int basetype)
Creates a new XQItemType object representing an XQuery atomic type. |
XQItemType |
XQDataFactory.createAtomicType(int basetype,
QName typename,
URI schemaURI)
Creates a new XQItemType object representing an XQuery atomic type. |
XQItemType |
XQDataFactory.createAttributeType(QName nodename,
int basetype)
Creates a new XQItemType object representing the XQuery
attribute(nodename, basetype) type
with the given node name and base type. |
XQItemType |
XQDataFactory.createAttributeType(QName nodename,
int basetype,
QName typename,
URI schemaURI)
Creates a new XQItemType object representing the XQuery
attribute(nodename,basetype,typename,schemaURI) type,
with the given node name, base type, schema type name and schema URI. |
XQItemType |
XQDataFactory.createCommentType()
Creates a new XQItemType object representing the XQuery
comment() type. |
XQItemType |
XQDataFactory.createDocumentElementType(XQItemType elementType)
Creates a new XQItemType object representing the XQuery
document-node(elementType) type containing a single element. |
XQItemType |
XQDataFactory.createDocumentSchemaElementType(XQItemType elementType)
Creates a new XQItemType object representing the XQuery
document-node(elementType) type containing a single
schema-element(...) . |
XQItemType |
XQDataFactory.createDocumentType()
Creates a new XQItemType object representing the XQuery
document-node() type. |
XQItemType |
XQDataFactory.createElementType(QName nodename,
int basetype)
Creates a new XQItemType object representing the XQuery
element(nodename, basetype) type, with the
given node name and base type. |
XQItemType |
XQDataFactory.createElementType(QName nodename,
int basetype,
QName typename,
URI schemaURI,
boolean allowNill)
Creates a new XQItemType object representing the XQuery
element(nodename,basetype,typename,schemaURI,
allowNill) type, given the node name, base type, schema type
name, schema URI, and nilled check. |
XQExpression |
XQConnection.createExpression()
Creates a new XQExpression object that can be used
to perform execute immediate operations with XQuery expressions. |
XQExpression |
XQConnection.createExpression(XQStaticContext properties)
Creates a new XQExpression object that can be used to
perform execute immediate operations with XQuery expressions. |
XQItem |
XQDataFactory.createItem(XQItem item)
Creates a copy of the specified XQItem . |
XQItem |
XQDataFactory.createItemFromAtomicValue(String value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromBoolean(boolean value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromByte(byte value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromDocument(InputStream value,
String baseURI,
XQItemType type)
Creates an item from the given value. |
XQItem |
XQDataFactory.createItemFromDocument(Reader value,
String baseURI,
XQItemType type)
Creates an item from the given value. |
XQItem |
XQDataFactory.createItemFromDocument(Source value,
XQItemType type)
Creates an item from the given Source . |
XQItem |
XQDataFactory.createItemFromDocument(String value,
String baseURI,
XQItemType type)
Creates an item from the given value. |
XQItem |
XQDataFactory.createItemFromDocument(XMLStreamReader value,
XQItemType type)
Creates an item from the given value. |
XQItem |
XQDataFactory.createItemFromDouble(double value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromFloat(float value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromInt(int value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromLong(long value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromNode(Node value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromObject(Object value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromShort(short value,
XQItemType type)
Creates an item from a given value. |
XQItem |
XQDataFactory.createItemFromString(String value,
XQItemType type)
Creates an item from a given value. |
XQItemType |
XQDataFactory.createItemType()
Creates a new XQItemType object representing the XQuery item type. |
XQItemType |
XQDataFactory.createNodeType()
Creates a new XQItemType object representing the XQuery node()
type. |
XQItemType |
XQDataFactory.createProcessingInstructionType(String piTarget)
Creates a new XQItemType object representing the XQuery
processing-instruction(piTarget) type. |
XQItemType |
XQDataFactory.createSchemaAttributeType(QName nodename,
int basetype,
URI schemaURI)
Creates a new XQItemType object representing the XQuery
schema-attribute(nodename,basetype,schemaURI) type,
with the given node name, base type, and schema URI. |
XQItemType |
XQDataFactory.createSchemaElementType(QName nodename,
int basetype,
URI schemaURI)
Creates a new XQItemType object representing the XQuery
schema-element(nodename,basetype,schemaURI)
type, given the node name, base type, and the schema URI. |
XQSequence |
XQDataFactory.createSequence(Iterator i)
Creates an XQSequence , containing all the items from the
iterator. |
XQSequence |
XQDataFactory.createSequence(XQSequence s)
Creates a copy of the specified XQSequence . |
XQSequenceType |
XQDataFactory.createSequenceType(XQItemType item,
int occurence)
Creates a new sequence type from an item type and occurence indicator. |
XQItemType |
XQDataFactory.createTextType()
Creates a new XQItemType object representing the XQuery
text() type. |
void |
XQStaticContext.declareNamespace(String prefix,
String uri)
Declares a namespace prefix and associates it with a namespace URI. |
void |
XQExpression.executeCommand(Reader cmd)
Executes an implementation-defined command. |
void |
XQExpression.executeCommand(String cmd)
Executes an implementation-defined command. |
XQResultSequence |
XQPreparedExpression.executeQuery()
Executes the prepared query expression. |
XQResultSequence |
XQExpression.executeQuery(InputStream query)
Executes a query expression. |
XQResultSequence |
XQExpression.executeQuery(Reader query)
Executes a query expression. |
XQResultSequence |
XQExpression.executeQuery(String query)
Executes a query expression. |
boolean |
XQSequence.first()
Moves to the first item in the sequence. |
QName[] |
XQPreparedExpression.getAllExternalVariables()
Retrieves all the external variables defined in the prolog of the prepared expression. |
QName[] |
XQPreparedExpression.getAllUnboundExternalVariables()
Retrieves the names of all unbound external variables. |
String |
XQItemAccessor.getAtomicValue()
Gets the current item as a Java String . |
boolean |
XQConnection.getAutoCommit()
Gets the auto-commit attribute of this connection |
int |
XQItemType.getBaseType()
Returns the base type of the item. |
boolean |
XQItemAccessor.getBoolean()
Gets the current item as a boolean . |
byte |
XQItemAccessor.getByte()
Gets the current item as a byte . |
XQConnection |
PooledXQConnection.getConnection()
Creates and returns an XQConnection object that is a handle
for the physical connection that this PooledXQConnection
object represents. |
XQConnection |
XQDataSource.getConnection()
Attempts to create a connection to an XML datasource. |
XQConnection |
XQResultItem.getConnection()
Gets the XQuery connection associated with this result item |
XQConnection |
XQResultSequence.getConnection()
Gets the XQuery connection associated with this result sequence |
XQConnection |
XQDataSource.getConnection(Connection con)
Attempts to create a connection to an XML datasource using an existing JDBC connection. |
XQConnection |
XQDataSource.getConnection(String username,
String passwd)
Attempts to establish a connection to an XML datasource using the supplied username and password. |
double |
XQItemAccessor.getDouble()
Gets the current item as a double . |
float |
XQItemAccessor.getFloat()
Gets the current item as a float . |
TimeZone |
XQDynamicContext.getImplicitTimeZone()
Gets the implicit timezone |
int |
XQItemAccessor.getInt()
Gets the current item as an int . |
XQItem |
XQSequence.getItem()
Get the current item as an immutable XQItem object. |
XMLStreamReader |
XQItemAccessor.getItemAsStream()
Read the current item as an XMLStreamReader object, as described
in Section 12.1 Serializing an XDM instance into a StAX event stream
(XMLStreamReader), XQuery API for Java (XQJ) 1.0. |
String |
XQItemAccessor.getItemAsString(Properties props)
Serializes the current item according to the XSLT 2.0 and XQuery 1.0 serialization. |
XQItemType |
XQItemAccessor.getItemType()
Gets the type of the item. |
int |
ConnectionPoolXQDataSource.getLoginTimeout()
Gets the maximum time in seconds that this datasource can wait while attempting to connect to a database. |
int |
XQDataSource.getLoginTimeout()
Gets the maximum time in seconds that this datasource can wait while attempting to connect to a database. |
PrintWriter |
ConnectionPoolXQDataSource.getLogWriter()
Retrieves the log writer for this datasource object. |
PrintWriter |
XQDataSource.getLogWriter()
Retrieves the log writer for this XQDataSource object. |
long |
XQItemAccessor.getLong()
Gets the current item as a long . |
int |
XQMetaData.getMaxExpressionLength()
Gets the maximum number of characters allowed in an expression in this data source. |
int |
XQMetaData.getMaxUserNameLength()
Gets the maximum number of characters allowed in a user name. |
XQMetaData |
XQConnection.getMetaData()
Gets the metadata for this connection. |
String |
XQStaticContext.getNamespaceURI(String prefix)
Retrieves the namespace URI associated with a prefix. |
Node |
XQItemAccessor.getNode()
Gets the item as a DOM node. |
QName |
XQItemType.getNodeName()
Returns the name of the node in case the item kind is an XQITEMKIND_DOCUMENT_ELEMENT , XQITEMKIND_DOCUMENT_SCHEMA_ELEMENT ,
XQITEMKIND_ELEMENT , XQITEMKIND_SCHEMA_ELEMENT ,
XQITEMKIND_ATTRIBUTE , or XQITEMKIND_SCHEMA_ATTRIBUTE . |
URI |
XQItemAccessor.getNodeUri()
Returns the URI for this item. |
Object |
XQItemAccessor.getObject()
Gets the current item as an Object . |
String |
XQItemType.getPIName()
Returns the name of the processing instruction type. |
PooledXQConnection |
ConnectionPoolXQDataSource.getPooledConnection()
Attempts to establish a physical connection to an XML datasource that can be used as a pooled connection. |
PooledXQConnection |
ConnectionPoolXQDataSource.getPooledConnection(String user,
String password)
Attempts to establish a physical connection to an XML datasource using the supplied username and password, that can be used as a pooled connection. |
int |
XQSequence.getPosition()
Gets the current cursor position. |
int |
XQMetaData.getProductMajorVersion()
Gets the major version of this product. |
int |
XQMetaData.getProductMinorVersion()
Gets the minor version of this product. |
String |
XQMetaData.getProductName()
Gets the name of this product. |
String |
XQMetaData.getProductVersion()
Gets the full version of this product. |
String |
ConnectionPoolXQDataSource.getProperty(String name)
Returns the current value of the named property if set, else null . |
String |
XQDataSource.getProperty(String name)
Returns the current value of the named property if set, else null . |
XMLStreamReader |
XQSequence.getSequenceAsStream()
Read the entire sequence starting from the current position as an XMLStreamReader object, as described in
Section 12.1 Serializing an XDM instance into a StAX event stream
(XMLStreamReader), XQuery API for Java (XQJ) 1.0. |
String |
XQSequence.getSequenceAsString(Properties props)
Serializes the sequence starting from the current position to a String according to the XSLT 2.0 and XQuery 1.0 serialization. |
short |
XQItemAccessor.getShort()
Gets the current item as a short . |
XQStaticContext |
XQConnection.getStaticContext()
Gets an XQStaticContext representing the default values for
all expression properties. |
XQStaticContext |
XQExpression.getStaticContext()
Gets an XQStaticContext representing the values for all
expression properties. |
XQStaticContext |
XQPreparedExpression.getStaticContext()
Gets an XQStaticContext representing the values for all
expression properties. |
XQSequenceType |
XQPreparedExpression.getStaticResultType()
Gets the static type information of the result sequence. |
XQSequenceType |
XQPreparedExpression.getStaticVariableType(QName name)
Retrieves the static type of a given external variable. |
Set |
XQMetaData.getSupportedXQueryEncodings()
Returns a set of java.lang.String , each of which
specifies a character encoding method the XQJ implmentation supports to
parse the XQuery query text. |
QName |
XQItemType.getTypeName()
Represents a type name (global or local). |
String |
XQMetaData.getUserName()
Gets the user name associated with this connection. |
int |
XQMetaData.getXQJMajorVersion()
Gets the major version number of XQJ specification supported by this implementation. |
int |
XQMetaData.getXQJMinorVersion()
Gets the minor version number of XQJ specification supported by this implementation. |
String |
XQMetaData.getXQJVersion()
Gets the full version of XQJ specification supported by this implementation. |
boolean |
XQItemAccessor.instanceOf(XQItemType type)
Checks if the item "matches" an item type, as defined in 2.5.4.2 Matching an Item Type and an Item, XQuery 1.0: An XML Query Language. |
boolean |
XQSequence.isAfterLast()
Checks if the current position is after the last item in the sequence. |
boolean |
XQSequence.isBeforeFirst()
Checks if the current position before the first item in the sequence. |
boolean |
XQSequence.isFirst()
Checks if the current position at the first item in the sequence. |
boolean |
XQMetaData.isFullAxisFeatureSupported()
Query if XQuery full axis feature is supported in this connection. |
boolean |
XQSequence.isLast()
Checks if the current position at the last item in the sequence. |
boolean |
XQMetaData.isModuleFeatureSupported()
Query if XQuery module feature is supported in this connection. |
boolean |
XQSequence.isOnItem()
Check if the sequence is positioned on an item or not. |
boolean |
XQMetaData.isReadOnly()
Query if the associated conection is restricted for read only use. |
boolean |
XQMetaData.isSchemaImportFeatureSupported()
Query if XQuery schema import feature is supported in this connection. |
boolean |
XQMetaData.isSchemaValidationFeatureSupported()
Query if XQuery schema validation feature is supported in this connection. |
boolean |
XQSequence.isScrollable()
Checks if the sequence is scrollable. |
boolean |
XQMetaData.isSerializationFeatureSupported()
Query if XQuery serialization feature is supported in this connection. |
boolean |
XQMetaData.isStaticTypingExtensionsSupported()
Query if XQuery static typing extensions are supported in this connection. |
boolean |
XQMetaData.isStaticTypingFeatureSupported()
Query if XQuery static typing feature is supported in this data source. |
boolean |
XQMetaData.isTransactionSupported()
Query if transaction is supported in this data source. |
boolean |
XQMetaData.isUserDefinedXMLSchemaTypeSupported()
Check if the user defined XML schema type is supported in this connection. |
boolean |
XQMetaData.isXQueryEncodingDeclSupported()
Query if the XQuery encoding declaration is supported by the XQJ implementation. |
boolean |
XQMetaData.isXQueryEncodingSupported(String encoding)
Query if a character encoding method of the XQuery query text is supported by the XQJ implmentation. |
boolean |
XQMetaData.isXQueryXSupported()
Query if XQueryX format is supported in this data source. |
boolean |
XQSequence.last()
Moves to the last item in the sequence. |
boolean |
XQSequence.next()
Moves to the next item in the sequence. |
XQPreparedExpression |
XQConnection.prepareExpression(InputStream xquery)
Prepares an expression for execution. |
XQPreparedExpression |
XQConnection.prepareExpression(InputStream xquery,
XQStaticContext properties)
Prepares an expression for execution. |
XQPreparedExpression |
XQConnection.prepareExpression(Reader xquery)
Prepares an expression for execution. |
XQPreparedExpression |
XQConnection.prepareExpression(Reader xquery,
XQStaticContext properties)
Prepares an expression for execution. |
XQPreparedExpression |
XQConnection.prepareExpression(String xquery)
Prepares an expression for execution. |
XQPreparedExpression |
XQConnection.prepareExpression(String xquery,
XQStaticContext properties)
Prepares an expression for execution. |
boolean |
XQSequence.previous()
Moves to the previous item in the sequence. |
boolean |
XQSequence.relative(int itempos)
Moves the cursor a relative number of items, either positive or negative. |
void |
XQConnection.rollback()
Undoes all changes made in the current transaction and releases any locks held by the datasource. |
void |
XQConnection.setAutoCommit(boolean autoCommit)
Sets the auto-commit attribute to the given state. |
void |
XQStaticContext.setBaseURI(String baseUri)
Sets the Base URI in the static context, specify the empty string to make it undefined. |
void |
XQStaticContext.setBindingMode(int bindingMode)
Sets the binding mode property. |
void |
XQStaticContext.setBoundarySpacePolicy(int policy)
Sets the boundary-space policy in the static context. |
void |
XQStaticContext.setConstructionMode(int mode)
Sets the construction mode in the static context. |
void |
XQStaticContext.setContextItemStaticType(XQItemType contextItemType)
Sets the static type of the context item, specify null
to make it unspecified. |
void |
XQStaticContext.setCopyNamespacesModeInherit(int mode)
Sets the inherit part of the copy-namespaces mode in the static context. |
void |
XQStaticContext.setCopyNamespacesModePreserve(int mode)
Sets the preserve part of the copy-namespaces mode in the static context. |
void |
XQStaticContext.setDefaultCollation(String uri)
Sets the URI of the default collation. |
void |
XQStaticContext.setDefaultElementTypeNamespace(String uri)
Sets the URI of the default element/type namespace, the empty string to make it unspecified. |
void |
XQStaticContext.setDefaultFunctionNamespace(String uri)
Sets the URI of the default function namespace, the empty string to make it unspecified. |
void |
XQStaticContext.setDefaultOrderForEmptySequences(int order)
Sets the default order for empty sequences in the static context. |
void |
XQStaticContext.setHoldability(int holdability)
Sets the holdability property. |
void |
XQDynamicContext.setImplicitTimeZone(TimeZone implicitTimeZone)
Sets the implicit timezone |
void |
ConnectionPoolXQDataSource.setLoginTimeout(int seconds)
Sets the maximum time in seconds that this datasource will wait while attempting to connect to a database. |
void |
XQDataSource.setLoginTimeout(int seconds)
Sets the maximum time in seconds that this datasource will wait while attempting to connect to a database. |
void |
ConnectionPoolXQDataSource.setLogWriter(PrintWriter out)
Sets the log writer for this datasource object to the given java.io.PrintWriter object. |
void |
XQDataSource.setLogWriter(PrintWriter out)
Sets the log writer for this XQDataSource object to the given
java.io.PrintWriter object. |
void |
XQStaticContext.setOrderingMode(int mode)
Sets the ordering mode in the static context. |
void |
ConnectionPoolXQDataSource.setProperties(Properties props)
Sets the data source properties from the specified Properties
instance. |
void |
XQDataSource.setProperties(Properties props)
Sets the data source properties from the specified Properties
instance. |
void |
ConnectionPoolXQDataSource.setProperty(String name,
String value)
Sets the named property to the specified value. |
void |
XQDataSource.setProperty(String name,
String value)
Sets the named property to the specified value. |
void |
XQStaticContext.setQueryLanguageTypeAndVersion(int langType)
Sets the input query language type and version. |
void |
XQStaticContext.setQueryTimeout(int seconds)
Sets the number of seconds an implementation will wait for a query to execute. |
void |
XQStaticContext.setScrollability(int scrollability)
Sets the scrollability of the result sequence. |
void |
XQConnection.setStaticContext(XQStaticContext properties)
Sets the default values for all expression properties. |
boolean |
XQMetaData.wasCreatedFromJDBCConnection()
Query if this connection was created from a JDBC connection. |
void |
XQItemAccessor.writeItem(OutputStream os,
Properties props)
Serializes the current item to a Writer according to
XSLT 2.0 and XQuery 1.0 serialization. |
void |
XQItemAccessor.writeItem(Writer ow,
Properties props)
Serializes the current item to a Writer according to
XSLT 2.0 and XQuery 1.0 serialization. |
void |
XQItemAccessor.writeItemToResult(Result result)
Writes the current item to a Result . |
void |
XQItemAccessor.writeItemToSAX(ContentHandler saxhdlr)
Writes the current item to a SAX handler, as described in in Section 12.2 Serializing an XDM instance into a SAX event stream, XQuery API for Java (XQJ) 1.0. |
void |
XQSequence.writeSequence(OutputStream os,
Properties props)
Serializes the sequence starting from the current position to an OutputStream according to the
XSLT 2.0 and XQuery 1.0 serialization. |
void |
XQSequence.writeSequence(Writer ow,
Properties props)
Serializes the sequence starting from the current position to a Writer according to the XSLT 2.0 and XQuery 1.0 serialization. |
void |
XQSequence.writeSequenceToResult(Result result)
Writes the entire sequence starting from the current position to a Result . |
void |
XQSequence.writeSequenceToSAX(ContentHandler saxhdlr)
Writes the entire sequence starting from the current position to a SAX handler, as described in Section 12.2 Serializing an XDM instance into a SAX event stream, XQuery API for Java (XQJ) 1.0. |
Constructors in javax.xml.xquery with parameters of type XQException | |
---|---|
XQConnectionEvent(PooledXQConnection con,
XQException ex)
Constructs an XQConnectionEvent object initialized with
the given PooledXQConnection object and
XQException object. |
Uses of XQException in net.xqj.basex |
---|
Methods in net.xqj.basex that throw XQException | |
---|---|
XQConnection |
BaseXXQDataSource.getConnection()
Creates an XQConnection / XQConnection2 instance. |
XQConnection |
BaseXXQDataSource.getConnection(Connection con)
Deprecated. |
XQConnection |
BaseXXQDataSource.getConnection(String username,
String passwd)
Creates a XQConnection / / XQConnection2 instance manually specifying user credentials. |
String |
BaseXXQDataSource.getProperty(String name)
|
void |
BaseXXQDataSource.setPort(String port)
Sets the target port of the BaseX Server. |
void |
BaseXXQDataSource.setProperty(String name,
String value)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |