Class SaxonXQConnection
- All Implemented Interfaces:
XQConnection,XQDataFactory
For Javadoc descriptions of the public methods, see the XQJ documentation.
-
Method Summary
Modifier and TypeMethodDescriptionvoidcommit()Makes all changes made in the current transaction permanent and releases any locks held by the datasource.copyPreparedExpression(XQPreparedExpression expression) Copy a prepared expression to create a new prepared expression.Creates a newXQExpressionobject that can be used to perform execute immediate operations with XQuery expressions.createExpression(XQStaticContext properties) Creates a newXQExpressionobject that can be used to perform execute immediate operations with XQuery expressions.booleanGets the auto-commit attribute of this connectionGet the Saxon Configuration in use.Gets the metadata for this connection.Gets anXQStaticContextrepresenting the default values for all expression properties.prepareExpression(InputStream xquery) Prepares an expression for execution.prepareExpression(InputStream xquery, XQStaticContext properties) Prepares an expression for execution.prepareExpression(Reader xquery) Prepares an expression for execution.prepareExpression(Reader xquery, XQStaticContext properties) Prepares an expression for execution.prepareExpression(String xquery) Prepares an expression for execution.prepareExpression(String xquery, XQStaticContext properties) Prepares an expression for execution.voidrollback()Undoes all changes made in the current transaction and releases any locks held by the datasource.voidsetAutoCommit(boolean autoCommit) Sets the auto-commit attribute to the given state.voidsetStaticContext(XQStaticContext properties) Sets the default values for all expression properties.Methods inherited from class com.saxonica.xqj.SaxonXQDataFactory
createAtomicType, createAtomicType, createAttributeType, createAttributeType, createCommentType, createDocumentElementType, createDocumentSchemaElementType, createDocumentType, createElementType, createElementType, createItem, createItemFromAtomicValue, createItemFromBoolean, createItemFromByte, createItemFromDocument, createItemFromDocument, createItemFromDocument, createItemFromDocument, createItemFromDocument, createItemFromDouble, createItemFromFloat, createItemFromInt, createItemFromLong, createItemFromNode, createItemFromObject, createItemFromShort, createItemFromString, createItemType, createNodeType, createProcessingInstructionType, createSchemaAttributeType, createSchemaElementType, createSequence, createSequence, createSequenceType, createTextType, getObjectConverter, init, setObjectConverterMethods inherited from class com.saxonica.xqj.Closable
close, isClosed, setClosableContainerMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface javax.xml.xquery.XQConnection
close, isClosedMethods inherited from interface javax.xml.xquery.XQDataFactory
createAtomicType, createAtomicType, createAttributeType, createAttributeType, createCommentType, createDocumentElementType, createDocumentSchemaElementType, createDocumentType, createElementType, createElementType, createItem, createItemFromAtomicValue, createItemFromBoolean, createItemFromByte, createItemFromDocument, createItemFromDocument, createItemFromDocument, createItemFromDocument, createItemFromDocument, createItemFromDouble, createItemFromFloat, createItemFromInt, createItemFromLong, createItemFromNode, createItemFromObject, createItemFromShort, createItemFromString, createItemType, createNodeType, createProcessingInstructionType, createSchemaAttributeType, createSchemaElementType, createSequence, createSequence, createSequenceType, createTextType
-
Method Details
-
getConfiguration
Get the Saxon Configuration in use. Changes made to this Configuration will affect this data source and XQJ connections created from it (either before or afterwards).- Returns:
- the configuration in use.
-
commit
Description copied from interface:XQConnectionMakes all changes made in the current transaction permanent and releases any locks held by the datasource. This method should be used only when auto-commit mode is disabled.Any
XQResultSequence, orXQResultItemmay be implicitly closed upon commit, if the holdability property of the sequence is set toXQConstants.HOLDTYPE_CLOSE_CURSORS_AT_COMMIT.- Specified by:
commitin interfaceXQConnection- Throws:
XQException- if the connection is in a closed state or this connection is operating in auto-commit mode
-
createExpression
Description copied from interface:XQConnectionCreates a newXQExpressionobject that can be used to perform execute immediate operations with XQuery expressions. The properties of the connection's defaultXQStaticContextare copied to the returnedXQExpression.- Specified by:
createExpressionin interfaceXQConnection- Returns:
XQExpressionthat can be used to execute multiple expressions- Throws:
XQException- if the connection is in a closed state
-
createExpression
Description copied from interface:XQConnectionCreates a newXQExpressionobject that can be used to perform execute immediate operations with XQuery expressions. The properties of the specifiedXQStaticContextvalues are copied to the returnedXQExpression.- Specified by:
createExpressionin interfaceXQConnection- Parameters:
properties-XQStaticContextcontaining values of expression properties- Returns:
XQExpressionthat can be used to execute multiple expressions- Throws:
XQException- if (1) the connection is in a closed state, or (2) the specified argument isnull
-
getAutoCommit
public boolean getAutoCommit()Description copied from interface:XQConnectionGets the auto-commit attribute of this connection- Specified by:
getAutoCommitin interfaceXQConnection- Returns:
- the auto-commit attribute of this connection.
trueif the connection operates in auto-commit mode; otherwisefalse
-
getMetaData
Description copied from interface:XQConnectionGets the metadata for this connection.- Specified by:
getMetaDatain interfaceXQConnection- Returns:
XQMetadatarepresenting the metadata of this connection- Throws:
XQException- if the connection is in a closed state
-
getStaticContext
Description copied from interface:XQConnectionGets anXQStaticContextrepresenting the default values for all expression properties. In order to modify the defaults, it is not sufficient to modify the values in the returnedXQStaticContextobject; in additionsetStaticContextshould be called to make those new values effective.- Specified by:
getStaticContextin interfaceXQConnection- Returns:
XQStaticContextrepresenting the default values for all expression properties- Throws:
XQException- if the connection is in a closed state
-
prepareExpression
Description copied from interface:XQConnectionPrepares an expression for execution.The properties of the connection's default
XQStaticContextare copied to the returnedXQPreparedExpression.- Specified by:
prepareExpressionin interfaceXQConnection- Parameters:
xquery- the XQuery expression as anInputStream. Cannot benull- Returns:
- the prepared XQuery expression
- Throws:
XQException- if (1) the connection is in a closed state, (2) there are errors preparing the expression or (3) the xquery parameter isnull
-
prepareExpression
public XQPreparedExpression prepareExpression(InputStream xquery, XQStaticContext properties) throws XQException Description copied from interface:XQConnectionPrepares an expression for execution.The properties of the specified
XQStaticContextvalues are copied to the returnedXQPreparedExpression.- Specified by:
prepareExpressionin interfaceXQConnection- Parameters:
xquery- the XQuery expression as anInputStream. Cannot benullproperties-XQStaticContextcontaining values of expression properties- Returns:
- the prepared XQuery expression
- Throws:
XQException- if (1) the connection is in a closed state, or (2) the specified argument isnull
-
prepareExpression
Description copied from interface:XQConnectionPrepares an expression for execution.The properties of the connection's default
XQStaticContextare copied to the returnedXQPreparedExpression.- Specified by:
prepareExpressionin interfaceXQConnection- Parameters:
xquery- the XQuery expression as aReader. Cannot benull- Returns:
- the prepared XQuery expression
- Throws:
XQException- if (1) the connection is in a closed state, (2) there are errors preparing the expression, or (3) the xquery parameter isnull
-
prepareExpression
public XQPreparedExpression prepareExpression(Reader xquery, XQStaticContext properties) throws XQException Description copied from interface:XQConnectionPrepares an expression for execution.The properties of the specified
XQStaticContextvalues are copied to the returnedXQPreparedExpression.- Specified by:
prepareExpressionin interfaceXQConnection- Parameters:
xquery- the XQuery expression as aReader. Cannot benullproperties-XQStaticContextcontaining values of expression properties- Returns:
- the prepared XQuery expression
- Throws:
XQException- if (1) the connection is in a closed state, or (2) the specified argument isnull
-
prepareExpression
Description copied from interface:XQConnectionPrepares an expression for execution.The properties of the connection's default
XQStaticContextare copied to the returnedXQPreparedExpression.- Specified by:
prepareExpressionin interfaceXQConnection- Parameters:
xquery- the XQuery expression as aString. Cannot benull- Returns:
- the prepared XQuery expression
- Throws:
XQException- if (1) the connection is in a closed state, (2) there are errors preparing the expression, or (3) the xquery parameter isnull
-
prepareExpression
public XQPreparedExpression prepareExpression(String xquery, XQStaticContext properties) throws XQException Description copied from interface:XQConnectionPrepares an expression for execution.The properties of the specified
XQStaticContextvalues are copied to the returnedXQPreparedExpression.- Specified by:
prepareExpressionin interfaceXQConnection- Parameters:
xquery- the XQuery expression as aString. Cannot benullproperties-XQStaticContextcontaining values of expression properties.- Returns:
- the prepared XQuery expression
- Throws:
XQException- if (1) the connection is in a closed state, or (2) the specified argument isnull
-
copyPreparedExpression
public XQPreparedExpression copyPreparedExpression(XQPreparedExpression expression) throws XQException Copy a prepared expression to create a new prepared expression. The prepared expression to be copied may belong to a different connection. This method (which is a Saxon extension to the XQJ interface) allows a query to be compiled once, and reused concurrently under multiple connections in multiple threads. The compiled code of the existing query and its static context are shared with the original query, but a new dynamic context is established, so that the two expressions can safely be used in parallel.- Parameters:
expression- the XQPreparedExpression to be copied. This must have been created using Saxon, and it must have been created with an XQConnection derived from the same XQDataSource as this connection.- Returns:
- a copy of the supplied expression, that can be used in a different connection or thread with its own dynamic context. The new copy of the expression belongs to this connection, and can be used in the same way as an expression created using any of the prepareExpression() methods on this class.
- Throws:
XQException- for example if either of the connections has been closed
-
rollback
Description copied from interface:XQConnectionUndoes all changes made in the current transaction and releases any locks held by the datasource. This method should be used only when auto-commit mode is disabled.- Specified by:
rollbackin interfaceXQConnection- Throws:
XQException- if the connection is in a closed state or this connection is operating in auto-commit mode
-
setAutoCommit
Description copied from interface:XQConnectionSets the auto-commit attribute to the given state. If a connection is in auto-commit mode, each xquery is executed and committed in an individual transaction. When auto-commit mode is disabled, xqueries are grouped in a transaction that must be ended explicitly by the application callingcommit()orrollback().
By default, new connections are in auto-commit mode.
If the value of auto-commit is changed in the middle of a transaction, the transaction is committed. If
setAutoCommitis called and the auto-commit attribute is not changed from its current value, the request is treated as a no-op.- Specified by:
setAutoCommitin interfaceXQConnection- Parameters:
autoCommit-trueto enable auto-commit mode;falseto disable it- Throws:
XQException- if (1) the connection is in a closed state, or (2) auto-commit is turned off but the implementation doesn't support transactions
-
setStaticContext
Description copied from interface:XQConnectionSets the default values for all expression properties. The implementation will read out all expression properties from the specifiedXQStaticContextand update its private copy.- Specified by:
setStaticContextin interfaceXQConnection- Parameters:
properties-XQStaticContextcontaining values of expression properties- Throws:
XQException- if the connection is in a closed state
-