Uses of Class
org.xquark.xml.xdbc.XMLDBCException

Packages that use XMLDBCException
org.xquark.bridge   
org.xquark.extractor   
org.xquark.xml.xdbc   
 

Uses of XMLDBCException in org.xquark.bridge
 

Methods in org.xquark.bridge that throw XMLDBCException
 void Mapper.clearBuffer()
          Discards the XML data buffered by the filer since the last call to flushBuffer() method.
 void XQBridge.close()
          Closes the extractor and the underlying resources among which the internal JDBC data source except if it was passed at construction time.
 void Mapping.close()
          Frees all resources associated to the object
 void Mapper.close()
          Closes the object and frees its associated resources.
 void Mapper.deleteDocument(java.lang.String id)
          Deletes the XML data corresponding to the id parameter.
 void Mapper.flushBuffer()
          Sends buffered XML data to the data source.
 java.sql.Connection XQBridge.getConnection()
          Deprecated. This method is linked to the deprecated constructor XQBridge.XQBridge(Connection, String).
 Mapper Mapping.getMapper()
          Creates a new Mapper object for storing a set of XML documents in the database using the default "insert" mode
 Mapper Mapping.getMapper(java.lang.String mode)
          Creates a new Mapper object for storing a set of XML documents in the database
 Mapping XQBridge.getMapping(org.xml.sax.InputSource source)
          Deprecated. Prefer the string methods because they do not create a problem for resolving relative URIs in mapping file schemaLocation attribute.
 Mapping XQBridge.getMapping(org.xml.sax.InputSource source, boolean reload)
          Deprecated. Prefer the string methods because they do not create a problem for resolving relative URIs in mapping file schemaLocation attribute.
 Mapping XQBridge.getMapping(java.lang.String fileURI)
          Creates a mapping object containing the processed version of the specified mapping file.
 Mapping XQBridge.getMapping(java.lang.String fileURI, boolean reload)
          Creates a mapping object containing the processed version of the specified mapping file.
 Mapping XQBridge.getMapping(java.lang.String fileURI, java.lang.String xslURI)
          Creates a mapping object containing the processed version of the specified mapping file.
 Mapping XQBridge.getMapping(java.lang.String fileURI, java.lang.String xslURI, boolean reload)
          Creates a mapping object containing the processed version of the specified mapping file.
 XMLConnection XQBridge.getXMLConnection()
          Returns an extractor XML/DBC connection that can be used to execute XQuery statements over the database.
 void Mapper.insertDocument(org.w3c.dom.Document doc)
          Inserts the XML data contained in the DOM2 document in the database.
 void Mapper.insertDocument(org.xml.sax.InputSource input)
          Inserts an XML document in the database using the SAX method.
 void Mapper.insertDocument(java.lang.String doc)
          Inserts the XML data contained in the string in the database.
 void Mapper.insertDocument(org.xml.sax.XMLReader parser, org.xml.sax.InputSource input)
          Inserts an XML document in database using the SAX method.
 void Mapper.setAutoFlush(boolean activated)
          Turns on or off the automatic buffering mode.
 

Constructors in org.xquark.bridge that throw XMLDBCException
Mapping(javax.sql.DataSource dataSource, org.xml.sax.InputSource source, boolean reload, java.lang.ClassLoader classLoader, org.xquark.schema.SchemaManager schemaManager, java.util.HashMap mappingMetadata)
          Constructor.
Mapping(javax.sql.DataSource dataSource, org.xml.sax.InputSource source, boolean reload, java.lang.ClassLoader classLoader, org.xquark.schema.SchemaManager schemaManager, java.util.HashMap mappingMetadata, javax.xml.transform.stream.StreamSource xslSource)
          Constructor.
 

Uses of XMLDBCException in org.xquark.extractor
 

Methods in org.xquark.extractor that throw XMLDBCException
 boolean ExtractorDriver.acceptsURI(java.lang.String uri)
           
 void Extractor.close()
          Closes the extractor and the underlying resources among which the internal JDBC data source except if it was passed at construction time.
 void ExtractorConnection.close()
           
 void ExtractorConnection.commit()
           
 XMLStatement ExtractorConnection.createStatement()
           
 XMLStatement ExtractorConnection.createStatement(short queryType)
           
 XMLConnection Extractor.getConnection()
          Creates a new XML/DBC connection instance.
 XMLConnection Extractor.getConnection(java.lang.String user, java.lang.String password)
          Not implemented by Extractor.
 XMLDataSource ExtractorDriver.getDataSource(java.lang.String uri)
           
 XMLDataSource ExtractorDriver.getDataSource(java.lang.String uri, java.lang.String user, java.lang.String password)
           
 ExtractorConnection Extractor.getExtractorConnection()
          Creates a new XML/DBC connection instance for the extractor, avoiding a cast on Extractor.getConnection()to access Extractor specific features.
 XMLDataSourceMetaData ExtractorConnection.getMetaData()
          Gets the metadata regarding this connection's data source.
 XMLDataSourceMetaData ExtractorConnection.getMetaData(boolean refresh)
           
 java.lang.String ExtractorDriver.getSpecificPart(java.lang.String uri)
           
 java.lang.String ExtractorConnection.getURL()
           
 java.lang.String ExtractorConnection.getUserName()
           
 boolean ExtractorConnection.isClosed()
           
 org.xquark.xquery.parser.XQueryModule ExtractorConnection.loadModule(org.xml.sax.InputSource source)
           
 org.xquark.xquery.parser.XQueryModule ExtractorConnection.loadModule(java.lang.String moduleURL)
           
 org.xquark.schema.Schema ExtractorConnection.loadSchema(org.xml.sax.InputSource source)
           
 PreparedXMLStatement ExtractorConnection.prepareStatement(java.lang.String query)
           
 void ExtractorConnection.setBaseURI(java.lang.String baseURI)
          Sets the base URI for documents.
 void ExtractorConnection.statementClosed(XMLStatement closedStatement)
           
 

Constructors in org.xquark.extractor that throw XMLDBCException
Extractor(java.sql.Connection jdbcConnection)
          Deprecated. prevents the use of an external or internal data source.
Extractor(java.sql.Connection jdbcConnection, java.lang.String configURL)
          Deprecated. prevents the use of an external or internal data source.
Extractor(java.sql.Connection jdbcConnection, java.lang.String configURL, java.lang.ClassLoader loader)
          Deprecated. prevents the use of an external or internal data source.
Extractor(javax.sql.DataSource ds)
          Constructor to use with a JDBC data source.
Extractor(javax.sql.DataSource ds, java.io.File configFile)
          Constructor to use with a JDBC data source and an extractor configuration file.
Extractor(javax.sql.DataSource ds, java.lang.String configURL)
          Constructor to use with a JDBC data source and an extractor configuration file URL.
Extractor(java.io.File configFile)
          Constructor to use with an extractor configuration file.
Extractor(java.io.File configFile, java.lang.ClassLoader loader)
          Use this constructor when you need a specific classloader that will be used to load JDBC drivers.
Extractor(java.lang.String URI)
          Constructor to use with a configuration file URL or a JNDI name referencing a JDBC datasource instance.
Extractor(java.lang.String URI, java.lang.ClassLoader loader)
          Use this constructor when you need a specific classloader that will be used to load JDBC drivers.
Extractor(java.lang.String jdbcURL, java.lang.String username, java.lang.String password)
          Construction to use when JDBC connection parameters are available.
Extractor(java.lang.String jdbcURL, java.lang.String username, java.lang.String password, java.lang.ClassLoader loader)
          Use this constructor when you need a specific classloader that will be used to load JDBC drivers.
 

Uses of XMLDBCException in org.xquark.xml.xdbc
 

Subclasses of XMLDBCException in org.xquark.xml.xdbc
 class XMLDBCNotRecognizedException
          This class describes a XMLDBC (Xml DataBase Connectivity) exception for various use in XMLDBC API.
 class XMLDBCNotSupportedException
          This class describes a XMLDBC (Xml DataBase Connectivity) exception for various use in XMLDBC API.
 

Methods in org.xquark.xml.xdbc with parameters of type XMLDBCException
 void XMLErrorHandler.error(XMLDBCException exception)
          Receive notification of an error that did not prevent the document storage.
 void XMLErrorHandler.warning(XMLDBCException exception)
          Receive notification of a warning.
 

Methods in org.xquark.xml.xdbc that throw XMLDBCException
 boolean XMLDriver.acceptsURI(java.lang.String uri)
          Returns true if the driver understand the specified connection string
 void XMLDocumentFiler.clearBuffer()
          Discards the XML data buffered by the filer since the last call to flushBuffer() method.
 void PreparedXMLStatement.clearVariables()
          Clears the current parameters values immediately.
 void XMLPooledConnection.close()
           
 void XMLCollection.close()
          Closes this XMLCollection.
 void XMLConnection.close()
          To close the current data source connection.
 void XMLDocumentFiler.close()
          Closes the object and frees its associated resources.
 void XMLResultSet.close()
          Releases this result set object's resources immediately instead of waiting for this to happen when it is automatically closed.
 void XMLStatement.close()
          Releases the statement XMLDBC resources immediately instead of waiting for this to happen when it is automatically closed.
 void DefaultReadOnlyXMLConnection.commit()
          Makes all changes made since the previous commit/rollback permanent and releases any data source locks currently held by the connection.
 void XMLConnection.commit()
          Makes all changes made since the previous commit/rollback permanent and releases any data source locks currently held by the Connection.
 boolean XMLCollection.containsDocument(java.lang.String documentID)
          Checks if a named XML document exists in this XML collection.
 XMLCollection DefaultReadOnlyXMLConnection.createCollection(java.lang.String name, java.lang.String description, Configurable config)
          To create a new XML collection.
 XMLCollection XMLConnection.createCollection(java.lang.String name, java.lang.String description, Configurable config)
          Creates a new XML collection.
 Configurable DefaultReadOnlyXMLConnection.createCollectionConfig()
          To create a new XML Collection configuration for set features and properties before create a XML Collection.
 Configurable XMLConnection.createCollectionConfig()
          Creates a new XML Collection configuration for set features and properties before create a XML Collection.
 XMLStatement XMLConnection.createStatement()
          Creates a statement object for sending XQuery (query type by default) statements to the data source.
 XMLStatement XMLConnection.createStatement(short queryType)
          Creates a statement object for sending XQuery or XPath (according to the specified type) statements to the data source.
 int DefaultReadOnlyXMLConnection.deleteAllCollections()
          To delete all XML collections of this connection.
 int XMLConnection.deleteAllCollections()
          Deletes all XML collections of this connection.
 void DefaultReadOnlyXMLConnection.deleteCollection(java.lang.String name)
          To delete a XML collection by its name.
 void XMLConnection.deleteCollection(java.lang.String name)
          Deletes an XML collection by its name.
 void XMLErrorHandler.error(XMLDBCException exception)
          Receive notification of an error that did not prevent the document storage.
 boolean PreparedXMLStatement.execute()
          Executes the query statement specified when this object was built with the prepareStatement method (see XMLConnection interface) that may return results.
 boolean XMLStatement.execute(java.lang.String query)
          Deprecated. Not useful since updates are not available.
 boolean XMLStatement.execute(java.lang.String query, int queryType)
          Deprecated. Not useful since updates are not available.
 XMLDocumentSet XMLStatement.executeDocumentQuery(java.lang.String query)
          Executes a query statement of the type specified when this object was built with the createStatement method (see XMLConnection interface) that returns complete XML documents.
 XMLResultSet PreparedXMLStatement.executeQuery()
          Executes the query statement specified when this object was built with the prepareStatement method (see XMLConnection interface) that returns results.
 XMLResultSet XMLStatement.executeQuery(java.lang.String query)
          Executes a query statement of the type specified when this object was built with the createStatement method (see XMLConnection interface) that returns results.
 XMLResultSet XMLStatement.executeQuery(java.lang.String query, int queryType)
          Deprecated. Distinction is no relevant anymore because XPath is now a subset of XQuery.
 void XMLDocumentFiler.flushBuffer()
          Sends buffered XML data to the data source.
 org.w3c.dom.Document XMLDocument.getAsDocument()
          Returns the document content as a DOM2 Document.
 org.w3c.dom.Document XMLDocument.getAsDOM()
          Deprecated. New method name is XMLDocument.getAsDocument()
 void XMLDocument.getAsDOM(org.w3c.dom.Element parent)
          Attaches a DOM2 fragment corresponding to the XML document to the Element node passed as a parameter.
 void XMLDocument.getAsSAX()
          Returns the document content as a SAX2 event flow.
 void XMLDocument.getAsStream(java.io.Writer out)
          Returns the document content in a provided character stream.
 java.lang.String XMLDocument.getAsString()
          Returns the document content as an XML string.
 boolean DefaultReadOnlyXMLConnection.getAutoCommit()
          To know the current auto-commit state.
 boolean XMLConnection.getAutoCommit()
          To know the current auto-commit state.
 XMLCollection DefaultReadOnlyXMLConnection.getCollection(java.lang.String name)
          To retrieve a XMLcollection by its name.
 XMLCollection XMLConnection.getCollection(java.lang.String name)
          Creates an XMLcollection object featuring the XML documents collection.
 java.util.List XMLDataSourceMetaData.getCollectionNames()
           
 XMLConnection XMLPooledConnection.getConnection()
           
 XMLConnection XMLCollection.getConnection()
          Retrieves the XMLConnection object that produced this XMLCollection.
 XMLConnection XMLDataSource.getConnection()
          Attempts to establish a connection with the data source.
 XMLConnection XMLDataSourceMetaData.getConnection()
          To get the XMLConnection object that produced this XMLDataSourceMetaData object.
static XMLConnection XMLDriverManager.getConnection(java.lang.String uri)
          Attempts to establish a connection to the given data source URI.
 XMLConnection XMLDataSource.getConnection(java.lang.String user, java.lang.String password)
          Attempts to establish a connection with the data source.
static XMLConnection XMLDriverManager.getConnection(java.lang.String uri, java.lang.String user, java.lang.String password)
          Attempts to establish a connection to the given data source URI with a login/password.
 XMLDataSource XMLDriver.getDataSource(java.lang.String uri)
          To obtain a handle to a data source with the specified URI.
static XMLDataSource XMLDriverManager.getDataSource(java.lang.String uri)
          Returns a handle to a data source with the specified URI.
 XMLDataSource XMLDriver.getDataSource(java.lang.String uri, java.lang.String user, java.lang.String password)
          To obtain a handle to a data source with the specified URI, user name and password.
static XMLDataSource XMLDriverManager.getDataSource(java.lang.String uri, java.lang.String user, java.lang.String password)
          Returns a handle to a data source with the specified URI.
 java.lang.String XMLCollection.getDescription()
          Retrieves the description of the XML collection.
 XMLDocument XMLCollection.getDocument(java.lang.String documentID)
          Retrieves an XML document in the XML collection.
 long XMLCollection.getDocumentCount()
          Retrieves the XML collection size (number of documents).
 XMLDocumentFiler XMLCollection.getDocumentFiler()
          Creates a "filer" object that can be used to insert a new XML document into the XML collection.
 XMLDocumentSet XMLStatement.getDocumentSet()
          Returns the current statement results as an XMLDocumentSet object.
static XMLDriver XMLDriverManager.getDriver(java.lang.String uri)
          Attempts to locate a driver that understands the given URI.
 XMLDocument XMLResultSet.getFragmentsAsDocument(java.lang.String namespace, java.lang.String localName, java.lang.String qName)
          Returns the fragments contained in the result set as a single XML document, with a document root element having the specified namespace, local name and qualified name.
 java.util.List XMLCollection.getIdentifierList()
          Returns a list of documents identifiers available in the XML collection.
 XMLDataSourceMetaData XMLConnection.getMetaData()
          Gets the metadata regarding this connection's data source.
 XMLDocument XMLDataSourceMetaData.getMetaData()
          Retrieves the XML document describing the complete metadata of the data source.
 XMLDocument XMLResultSet.getMetaData()
          Returns the result set metadata (the XML Schema that models the returned data) as an XMLDocument.
 XMLDataSourceMetaData XMLConnection.getMetaData(boolean refresh)
          Gets the metadata regarding this connection's data source.
 java.util.List XMLDataSourceMetaData.getMetaModules()
           
 java.lang.String XMLCollection.getName()
          Retrieves the unique name of the XML collection.
 XMLDocument XMLDataSourceMetaData.getPathSet(java.lang.String colName)
           
 XMLPooledConnection XMLConnectionPoolDataSource.getPooledConnection()
           
 XMLPooledConnection XMLConnectionPoolDataSource.getPooledConnection(java.lang.String user, java.lang.String password)
           
 int XMLResultSet.getPosition()
          Retrieves the current cursor position in ResultSet.
 java.util.Map XMLResultSet.getPrefixMap()
          Returns the result set prefix map (as prefix-namespace pairs).
 XMLResultSet XMLStatement.getResultSet()
          Returns the current statement results as an XMLResultSet object.
 XMLDocument XMLDataSourceMetaData.getSchema(java.lang.String targetNamespace)
          Retrieves the XML document describing the XML schema for the given namespace.
 java.util.List XMLDataSourceMetaData.getSchemaNamespaces()
          Retrieves the available schema namespaces in the data source.
 java.lang.String XMLDriver.getSpecificPart(java.lang.String uri)
          Returns the driver-specific part of the URI
 XMLStatement XMLResultSet.getStatement()
          Returns the statement that produced this result set.
 short DefaultReadOnlyXMLConnection.getTransactionIsolation()
          Gets this connection's current transaction isolation level.
 short XMLConnection.getTransactionIsolation()
          Gets this Connection's current transaction isolation level.
 java.lang.String XMLConnection.getURL()
          To get the current URL of this connection.
 java.lang.String XMLConnection.getUserName()
          To get the current user name.
 XMLDocument XMLDataSourceMetaData.getXQJMetaData()
           
 boolean XMLResultSet.hasNext()
          Indicates if there is a next Result after the current Result in ResultSet.
 XMLDocument XMLDocumentFiler.insertDocument(org.w3c.dom.Document doc)
          Inserts the XML document in the filer's collection.
 XMLDocument XMLDocumentFiler.insertDocument(org.w3c.dom.Document doc, java.lang.String id)
          Inserts the XML document in the filer's collection with the specified identifier.
 XMLDocument XMLDocumentFiler.insertDocument(org.xml.sax.InputSource input)
          Inserts an XML document in the filer's collection using the SAX method.
 XMLDocument XMLDocumentFiler.insertDocument(org.xml.sax.InputSource input, java.lang.String id)
          Inserts an XML document in the filer's collection using the SAX method.
 XMLDocument XMLDocumentFiler.insertDocument(java.lang.String doc)
          Inserts the XML document contained in the string in the filer's collection.
 XMLDocument XMLDocumentFiler.insertDocument(java.lang.String doc, java.lang.String id)
          Inserts the XML document contained in the string in the filer's collection with the specified identifier.
 XMLDocument XMLDocumentFiler.insertDocument(org.xml.sax.XMLReader parser, org.xml.sax.InputSource input)
          Inserts an XML document in the filer's collection using the SAX method.
 XMLDocument XMLDocumentFiler.insertDocument(org.xml.sax.XMLReader parser, org.xml.sax.InputSource input, java.lang.String id)
          Inserts an XML document in the filer's collection using the SAX method.
 boolean XMLResultSet.isBeforeFirst()
          Indicates whether the cursor is before the first result in this result set.
 boolean XMLConnection.isClosed()
          To know the connection state (opened or closed).
 boolean DefaultReadOnlyXMLConnection.isReadOnly()
          To know the read/write mode of the current connection.
 boolean XMLCollection.isReadOnly()
          Returns true if the XML collection is read-only mode.
 boolean XMLConnection.isReadOnly()
          To know the read/write mode of the current connection.
 org.w3c.dom.Document XMLResultSet.nextAsDocument()
          Returns the next result as a DOM2 document and increments by 1 the cursor position.
 org.w3c.dom.Node XMLResultSet.nextAsDOM()
          Deprecated. Prefer XMLResultSet.nextAsDocument() or XMLResultSet.nextAsDOM(Element) becuse a result may return multiple root nodes.
 void XMLResultSet.nextAsDOM(org.w3c.dom.Element parent)
          Attaches the next result nodes as children of the Element node passed as a parameter to and increments by 1 the cursor position.
 void XMLResultSet.nextAsSAX()
          Returns the next result as a SAX2 event flow and increments by 1 the cursor position.
 void XMLResultSet.nextAsStream(java.io.Writer out)
          Returns the next result in a provided character stream and increments by 1 the cursor position.
 java.lang.String XMLResultSet.nextAsString()
          Returns the next result as an XML string and increments by 1 the cursor position.
 XMLDocument XMLDocumentSet.nextDocument()
          Returns the next result as an XML document and increments by 1 the cursor position.
 PreparedXMLStatement XMLConnection.prepareStatement(java.lang.String query)
          Creates a prepared statement object for sending parameterized XQuery (query type by default) statements to the data source.
 void XMLDocument.remove()
          Removes the document from the collection to which it belongs.
 int XMLCollection.removeAllDocuments()
          Removes all XML documents from the XML collection.
 boolean XMLCollection.removeDocument(java.lang.String documentID)
          Removes the named XML document from the XML collection.
 void DefaultReadOnlyXMLConnection.renameCollection(java.lang.String oldname, java.lang.String newname)
          To rename an XML collection by its name.
 void XMLConnection.renameCollection(java.lang.String oldname, java.lang.String newname)
          Renames an XML collection by its name.
 boolean XMLCollection.renameDocument(java.lang.String oldID, java.lang.String newID)
          Renames a document.
 void DefaultReadOnlyXMLConnection.rollback()
          Drops all changes made since the previous commit/rollback and releases any data source locks currently held by this connection.
 void XMLConnection.rollback()
          Drops all changes made since the previous commit/rollback and releases any data source locks currently held by this Connection.
 void DefaultReadOnlyXMLConnection.setAutoCommit(boolean autoCommitMode)
          Sets this connection's auto-commit mode.
 void XMLConnection.setAutoCommit(boolean autoCommitMode)
          Sets this connection's auto-commit mode.
 void XMLDocumentFiler.setAutoFlush(boolean activated)
          Turns on or off the automatic buffering mode.
 void XMLConnection.setBaseURI(java.lang.String baseURI)
          Sets the base URI for documents.
 void XMLStatement.setBaseURI(java.lang.String baseURI)
          Sets the base URI for documents.
 void PreparedXMLStatement.setBigDecimal(java.lang.String varName, java.math.BigDecimal value)
          To set the specified variable with a
 void PreparedXMLStatement.setBigDecimal(java.lang.String ns, java.lang.String varName, java.math.BigDecimal value)
          To set the specified variable with a
 void PreparedXMLStatement.setBoolean(java.lang.String varName, boolean value)
          To set the specified variable with a boolean value.
 void PreparedXMLStatement.setBoolean(java.lang.String ns, java.lang.String varName, boolean value)
          To set the specified variable with a boolean value.
 void PreparedXMLStatement.setBytes(java.lang.String varName, byte[] value)
          To set the specified variable with a byte array value.
 void PreparedXMLStatement.setBytes(java.lang.String ns, java.lang.String varName, byte[] value)
          To set the specified variable with a byte array value.
 void PreparedXMLStatement.setDate(java.lang.String varName, java.util.Date value)
          To set the specified variable with a
 void PreparedXMLStatement.setDate(java.lang.String ns, java.lang.String varName, java.util.Date value)
          To set the specified variable with a
 void XMLCollection.setDescription(java.lang.String description)
          Sets the description of the XML collection.
 void XMLDocumentFiler.setDocumentId(java.lang.String id)
          Sets the identifier of the next document to be stored through this object.
 void PreparedXMLStatement.setDouble(java.lang.String varName, double value)
          To set the specified variable with a double value.
 void PreparedXMLStatement.setDouble(java.lang.String ns, java.lang.String varName, double value)
          To set the specified variable with a double value.
 void PreparedXMLStatement.setExternalVariable(java.lang.String varName, java.lang.String value)
          Binds the specified external variable to the current query of the statement.
 void PreparedXMLStatement.setExternalVariable(java.lang.String ns, java.lang.String varName, java.lang.String value)
          Binds the specified external variable to the current query of the statement.
 void PreparedXMLStatement.setFloat(java.lang.String varName, float value)
          To set the specified variable with a float value.
 void PreparedXMLStatement.setFloat(java.lang.String ns, java.lang.String varName, float value)
          To set the specified variable with a float value.
 void XMLDocument.setIdentifier(java.lang.String identifier)
          Changes the document identifier in the XML collection.
 void PreparedXMLStatement.setInputStream(java.lang.String varName, java.io.InputStream value, int length)
          To set the specified variable with a
 void PreparedXMLStatement.setInputStream(java.lang.String ns, java.lang.String varName, java.io.InputStream value, int length)
          To set the specified variable with a
 void PreparedXMLStatement.setLong(java.lang.String varName, long value)
          To set the specified variable with a long value.
 void PreparedXMLStatement.setLong(java.lang.String ns, java.lang.String varName, long value)
          To set the specified variable with a long value.
 void PreparedXMLStatement.setObject(java.lang.String varName, java.lang.Object value)
          To set the specified variable with a value inside an object.
 void PreparedXMLStatement.setObject(java.lang.String ns, java.lang.String varName, java.lang.Object value)
          To set the specified variable with a value inside an object.
 void DefaultReadOnlyXMLConnection.setReadOnly(boolean readOnlyMode)
          To change the read/write mode of the connection.
 void XMLCollection.setReadOnly(boolean readOnly)
          Changes the read-only mode for this XML collection.
 void XMLConnection.setReadOnly(boolean readOnlyMode)
          To change the read/write mode of the connection.
 void PreparedXMLStatement.setSequence(java.lang.String varName, java.util.List value)
          To set the specified variable with a Sequence value.
 void PreparedXMLStatement.setSequence(java.lang.String ns, java.lang.String varName, java.util.List value)
          To set the specified variable with a Sequence value.
 void PreparedXMLStatement.setSource(java.lang.String varName, javax.xml.transform.Source source)
          To set the specified variable with a value inside a Source.
 void PreparedXMLStatement.setSource(java.lang.String ns, java.lang.String varName, javax.xml.transform.Source source)
          To set the specified variable with a value inside a Source.
 void PreparedXMLStatement.setString(java.lang.String varName, java.lang.String value)
          To set the specified variable with a String value.
 void PreparedXMLStatement.setString(java.lang.String ns, java.lang.String varName, java.lang.String value)
          To set the specified variable with a String value.
 void DefaultReadOnlyXMLConnection.setTransactionIsolation(short level)
          Attempts to change the transaction isolation level to the one given.
 void XMLConnection.setTransactionIsolation(short level)
          Attempts to change the transaction isolation level to the one given.
 void XMLErrorHandler.warning(XMLDBCException exception)
          Receive notification of a warning.
 



Copyright © 2009 Université de Versailles Saint-Quentin, XQuark Group. All rights reserved.