|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.xml.dbaccess.DBAccess
oracle.xml.xmldbaccess.XMLDBAccess
This Bean is a simple extension of the DBAccess bean to support the XMLType Functionality that was introduced as a part of Oracle 9i database This bean lets user to create XMLType tables and store XML documents. The XMLDocuments are stored as rows in the database table as an XMLType type. This class also provides methods to list, delete or retrieve XMLtype tables and data. The table is created using the SQL statement CREATE TABLE (FILENAME CHAR( ) UNIQUE, FILEDATA sys.XMLType);
Field Summary |
Fields inherited from class oracle.xml.dbaccess.DBAccess |
nameSize |
Constructor Summary | |
XMLDBAccess() |
Method Summary | |
boolean |
createXMLTypeTable(java.sql.Connection con, java.lang.String tablename) Create an XMLType table |
java.sql.Clob |
getXMLTypeClob(java.sql.Connection con, java.lang.String tablename, java.lang.String xmlname) Retrieve text file from an XMLType table |
java.lang.String |
getXMLTypeData(java.sql.Connection con, java.lang.String tablename, java.lang.String xmlname) Retrieve text file from an XMLType table |
java.lang.String[] |
getXMLTypeTableNames(java.sql.Connection con, java.lang.String tablePrefix) Get all XML tables with names starting with a given string |
java.sql.Clob |
getXMLTypeXPathCLOB(java.sql.Connection con, java.lang.String tablename, java.lang.String xmlname, java.lang.String xpathexp) Retrieve the Clob data based on the XPATH expression from an XMLType table |
java.lang.String |
getXMLTypeXPathTextData(java.sql.Connection con, java.lang.String tablename, java.lang.String xmlname, java.lang.String xpathexp) Retrieve the text data based on the XPATH expression from an XMLType table |
boolean |
insertXMLTypeData(java.sql.Connection con, java.lang.String tablename, java.lang.String xmlname, java.lang.String xmldata) Inserts text file as a row in an XMLType table |
boolean |
isXMLTypeTable(java.sql.Connection con, java.lang.String tablename) Check if the table is an XMLType table. |
boolean |
replaceXMLTypeData(java.sql.Connection con, java.lang.String tablename, java.lang.String xmlname, java.lang.String xmldata) Replace text file as a row in an XMLType table |
Methods inherited from class oracle.xml.dbaccess.DBAccess |
createBLOBTable, createXMLTable, deleteBLOBName, deleteXMLName, dropBLOBTable, dropXMLTable, getBLOBData, getNameSize, getXMLData, getXMLNames, getXMLTableNames, insertBLOBData, insertXMLData, isXMLTable, replaceXMLData, xmlTableExists |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public XMLDBAccess()
Method Detail |
public boolean isXMLTypeTable(java.sql.Connection con, java.lang.String tablename) throws java.lang.Exception
con
- - the Connection objectjava.lang.Exception
public java.lang.String[] getXMLTypeTableNames(java.sql.Connection con, java.lang.String tablePrefix) throws java.lang.Exception
con
- - the Connection objecttablePrefix
- - table prefix stringjava.lang.Exception
public boolean createXMLTypeTable(java.sql.Connection con, java.lang.String tablename) throws java.lang.Exception
con
- - the Connection objecttablename
- - the table namejava.lang.Exception
public boolean insertXMLTypeData(java.sql.Connection con, java.lang.String tablename, java.lang.String xmlname, java.lang.String xmldata) throws java.sql.SQLException, java.io.IOException, java.lang.NoClassDefFoundError
con
- - the Connection objecttablename
- - the table namexmlname
- - the file namexmldata
- - string with the file datajava.sql.SQLException
java.io.IOException
java.lang.NoClassDefFoundError
public boolean replaceXMLTypeData(java.sql.Connection con, java.lang.String tablename, java.lang.String xmlname, java.lang.String xmldata) throws java.lang.Exception, java.lang.NoClassDefFoundError
con
- - the Connection objecttablename
- - the table namexmlname
- - the file namexmldata
- - string with the file datajava.lang.Exception
java.lang.NoClassDefFoundError
public java.lang.String getXMLTypeData(java.sql.Connection con, java.lang.String tablename, java.lang.String xmlname) throws java.sql.SQLException
con
- - the Connection objecttablename
- - the table namexmlname
- - the file namejava.sql.SQLException
public java.sql.Clob getXMLTypeClob(java.sql.Connection con, java.lang.String tablename, java.lang.String xmlname) throws java.sql.SQLException
con
- - the Connection objecttablename
- - the table namexmlname
- - the file namejava.sql.SQLException
public java.lang.String getXMLTypeXPathTextData(java.sql.Connection con, java.lang.String tablename, java.lang.String xmlname, java.lang.String xpathexp) throws java.sql.SQLException
con
- - the Connection objecttablename
- - the table namexmlname
- - the file namexpathexp
- - XPATH expression to search the XML documentjava.sql.SQLException
public java.sql.Clob getXMLTypeXPathCLOB(java.sql.Connection con, java.lang.String tablename, java.lang.String xmlname, java.lang.String xpathexp) throws java.sql.SQLException
con
- - the Connection objecttablename
- - the table namexmlname
- - the file namexpathexp
- - XPATH expression to search the XML documentjava.sql.SQLException
|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |