The present invention relates generally to relational databases and, more specifically, to XML visualization of a database and DBURI references to database objects.
On the World Wide Web, there is a need to reference data from different sources inside documents. The standard way of referencing such data is through the use of URIs—or universal resource identifiers. Since a vast majority of the data lies inside relational databases, it is necessary to support a standard URI based access methods to such data. Typically, such applications are written using standard mechanisms like Servlets, which in-turn may execute SQL statements to retrieve and format the database data. Significant processing is often needed to convert the results of the SQL data into a standard format required by the user, such as extensible Markup Language (XML). XML is a World Wide Web Consortium (W3C) standard for representing data.
Based on the foregoing, it is clearly desirable to provide a less cumbersome mechanism and technique for allowing clients, such as browsers, that support accessing resources using URLs, to access relational data.
Techniques are provided for allowing a user to view and retrieve data from a relational database in XML format.
Techniques are provided for
Techniques are also provided for using XML syntax in exchanging data with relational databases. According to certain embodiments of the invention, an access mechanism is provided that allows one or more portions of the relational database to be accessed as if it were an XML document. Users may navigate through those “visualized” portions of the database using XPath expressions. Techniques are also provided to modify the “visualized” portions of the database and these modifications are converted to relational database operations such as SQL DMLs and DDLs.
The present invention is illustrated by way of example, and not by way of limitation, in the figures of the accompanying drawings and in which like reference numerals refer to similar elements and in which:
Techniques are provided for using XML syntax for accessing data in relational databases. In the following description, for the purposes of explanation, numerous specific details are set forth in order to provide a thorough understanding of the present invention. It will be apparent, however, to one skilled in the art that the present invention may be practiced without these specific details. In other instances, well-known structures and devices are shown in block diagram form in order to avoid unnecessarily obscuring the present invention.
Data within relational databases are typically accessed by sending commands to database servers that manage the databases. Such commands must conform to a database language supported by the database server. Structured Query Language (SQL) is a database language supported by many database systems.
Using the techniques described herein, any particular user of the relational database, herein referred to as the “current user”, can visualize as an XML tree all the tables and views and the associated schema, in the relational database, to which the current user has been granted access privileges. In other words, the user, instead of seeing the database data in the form of tables and views, the data is presented to the user in the form of an XML document, and the typical structure of an XML document is a tree.
There may be several concurrent current users of the database. However, for the purpose of simplifying the description, the techniques described herein refer to a single current user. The XML tree is hereafter referred to as a “visualized XML document”. The visualized XML document comprises XML representations of the tables and views and the associated schema. Because the XML document is based on the access rights of a user, the XML document will vary from user to user based on each user's access rights. Thus, the visualized XML document, as described herein, is associated with the current user.
The data items that are identified by a URL or URI, and that are to be accessed in a relational database, are referred to herein as “target data”. Target data may vary from implementation to implementation. Target data may be any one of numerous types of data, such as relational database schema objects, relational data, control files, etc. The present invention is not limited to target data of any particular type.
In order for the current user to access and manipulate target data in the relational databases as if the target data are XML data, a mechanism is provided for: 1) defining a default virtual visualization of any relational database for the current user, including all of the data for which the current user has access privileges in the relational database, wherein the default virtual visualization is defined as a canonical XML document, 2) providing a standard Uniform Resource Indicator (URI) that is locally defined within the database and by which one or more fragments of the visualized XML document can be accessed by defining the URI as an XPath expression over the visualized XML document, 3) providing a standard Uniform Resource Locator (URL) as a mechanism that can be used in conjunction with a web browser that is external to the relational database for accessing data stored in the relational database by defining the URL as an Xpath expression over the visualized XML document, 4) providing, in the relational database, new data types and new object types that can be used for storing the URIs and URLs, and 5) providing a mechanism to modify, create, add or delete data in the relational database through the visualized document, using the standard URIs and URLs as described herein.
XPath expressions are W3c standard ways of navigating XML documents. XPath expressions allow for traversals and insert/deletes/updates on the visualized XML document (the XML visualization of the relational database). The XPath expressions can be converted into SQL Data Definition Language (DDL) and Data Manipulation Language (DML) commands in the relational database.
The combination of (1) XML visualization of the relational database, and (2) the mechanism for navigating through the visualized XML document using XPath expressions, allows the user to “point to” any data in the relational database. For example, an XPath expression such as, /SCOTT/EMP/ROW[EMPNO=2100] points to the data value in the row identified by EMPNO=21. The row in question is in a relational database table called EMP, which is a schema object of the relational database schema called Scott.
The XML visualization of the relational database is described in greater detail herein.
Virtual XML Visualization of a Relational Database and XPATH
According to certain embodiments, the current user can see all the data in the relational database, to which the user has been granted access privileges, as a visualized XML document. The visualized XML document includes a “database tag” and a set of schemas with tables and views. For example, if the database is called “oradb” then the XML document starts with the database tag “<oradb>” and ends with the database tag “</oradb>”.
The current user is permitted to read, insert, update and delete elements from the visualized XML document. The current user is thus unaware of the actual nature of the storage or access of the data in the relational database. The current user simply uses XPath expressions for navigation through the visualized XML document.
For example, assume that the current user of the relational database is Scott. Associated with each current user of the relational database is a schema by the same name. A schema is a logical collection of relational database objects such as tables, views clusters, functions, etc.
Assume that the current user, Scott, has privileges to access schemas SCOTT and JONES in the relational database and has privileges to access the data associated with SCOTT and JONES. According to certain embodiments of the techniques, the current user, Scott, is able to see a default virtual visualization of the relational database as follows (not the full visualization):
The above default virtual visualization is merely an example of one implementation of a default virtual visualization. The default virtual visualization may vary from implementation to implementation. The invention is not restricted to a particular visualization model.
According to certain embodiments of the techniques, a standard URL and URI mechanism is also provided to access the data stored in any database, by defining the URL and URI as an XPath expression over the visualized XML document.
According to one embodiment of the invention, the URL may be processed by using a servlet, which uses the native URI processing mechanisms to access the data pointed by the URL.
According to certain embodiments of the invention, the database tag (oradb) may be implicitly bound in the processing context and need not be explicitly specified in the URL.
A current user who does not have local access to the relational database may use a browser to access data in the relational database over the Internet by using a URL. For example, assume that the current user is Scott and that Scott would like to use a browser to access the employee-name column of EMP table at the row for which the employee number is 2100, and where the EMP table is in schema SCOTT. The URL that Scott would use may look like the following:
In the above URL, the database tag, “oradb”, is implicitly bound, and thus the user need not specify the database tag in the URL.
The result of accessing the URL or the URI would be a fragment of the visualized XML document containing the ename argument as shown below:
The current user can augment the URL or URI with content types to specify the Multipurpose Internet Mail Extensions (MIME) type of the output. For example, if the URL points to a BLOB (Binary Large OBject) column that is storing an image, wherein the image is the “target data”, then the content type can be set to gif. Thus, in response to using the URL, the current user obtains the image rather than, for example, a large hexadecimal file.
As another example, the current user may augment the URL to request, as the target data, the text value of the column to which the URL points. For example, assume that the current user, Scott, uses the following URL to access the employee-name column of EMP table at the row for which the employee number is 2100:
“text( )” is an XPath standard to identify the text node. The use of text( ) in the above URL would produce a result that contains only the text value in the employee-name column of EMP table at the row for which the employee number is 2100. The text value in the employee-name column of EMP table at the row for which the employee number is 2100 is “John”. Thus, the result of accessing the above URL using text( ) is “John”. In contrast, when text( ) is not used in the URL to access the employee-name column in the example, “John” is inlined inside a fragment of the visualized XML document as follows:
In another embodiment of the invention, the mime information may be derived automatically by the database, based on other auxiliary information that may be stored with the URL or through user written functions.
Mapping Rules for Defining Virtual XML Visualization of a Relational Database
Techniques are provided for defining the default virtual visualization of the database as a canonical XML document. According to one embodiment, the rules for defining the default virtual visualization are as follows:
Rules for Converting XPath Expressions Into Relational Database Queries
According to one embodiment of the invention, the Xpath query over the XML visualization may be translated into relational database queries and the result formatted in XML. Techniques are provided for converting XPath expressions into relational database queries. For the purpose of explanation, assume that the XPath expression that is to be converted into a query is in the context of the relational database “oradb”. Thus, the format of a typical XPath expression is the context of “oradb” can be generalized as follows:
Each element of the above XPath expression may optionally have a predicate. Predicates take the form,
For example, the element, Row, may have a predicate as follows,
The rules for converting XPath expressions into relational database queries will refer to the above general format for an XPath expression and are as follows:
1) An XPath expression of the form /Schema/Table is converted to a corresponding relational database query such as the following SQL statement,
The syntax used in the preceding statement is merely illustrative. The actual syntax of SQL statements may vary from implementation to implementation. The present invention is not limited to any particular syntax.
The results of the SQL statement can then be converted into a corresponding fragment of the visualized XML document.
2) An XPath expression of the form /Schema/Table/Row/Column is converted to a corresponding relational database query such as the following SQL statement,
The syntax used in the preceding statement is merely illustrative. The actual syntax of SQL statements may vary from implementation to implementation. The present invention is not limited to any particular syntax.
The results of the SQL statement can then be converted into a corresponding fragment of the visualized XML document.
3) An XPath expression of the form /Schema/Table/Row [Empno=2100]/Column is converted to a corresponding relational database query such as the following SQL statement,
The syntax used in the preceding statements is merely illustrative. The actual syntax of the query language statements may vary from implementation to implementation. The present invention is not limited to any particular syntax. The results of the query language statement can then be converted into a corresponding fragment of the visualized XML document.
URI Types
According to certain embodiments, a special data type is provided in the relational database for storing URIs and URLs in the relational database. Such a data type is herein referred to as an “Uritype”. URIs and URLs can be stored in columns in relational database tables by defining the URIs and URLs as Uritype data.
The HTTP-Uritype stores HTTP (HyperText Transfer Protocol) URLs, and fetches the data pointed to by the URL using the HTTP protocol. The FTP-Uritype stores FTP (File Transfer Protocols) URLs and fetches the data, using FTP. The DB-Uritype stores intra-database references using the Xpath mechanism described herein.
The DB-Uritype can fetch the data associated with the URL using the Xpath translation mechanism defined earlier or through other mechanisms.
The user may define subtypes of the Uritype or any of the other subtypes, and provide the implementation for getting the data pointed to by that URL.
Apart from being able to store URIs and URLs, the general functions associated with the Uritype data type include retrieving URIs and URLs as well as retrieving XML documents that are stored as LOBs, for example, CLOBs and BLOBs, in the relational database.
When the current user wishes to retrieve target data, pointed to by the URL, from the relational database, the current user's XPath expressions are automatically converted into appropriate query language statements. The actual syntax of such statements depend on the query language used in the relational database and may vary from implementation to implementation. The present invention is not limited to any particular syntax. The relational database functions of the Uritype data type can be abstracted by the following statements:
The preceding statements merely illustrate function. Such statements are not necessarily query language statements. The invention is not restricted to a particular set of query language statements.
Column 260 at row 271 stores data of type HTTP-Uritype. Column 260 at row 272 stores data of type FTP-Uritype. Finally, column 260 at row 273 stores data of type DB-Uritype. Note that since the DB-Uritype, HTTP-Uritype etc., have been defined as subtypes of the UriType type, we can store instances of these types in the Purchase Order Link column.
The current user can retrieve any of the data pointed by the Uritype data stored in table 200 The database will automatically fetch the data using the appropriate mechanisms.
For example, the query shown below, retrieves the Purchase Order data pointed to by the Purchase Order Link column:
The syntax used in the preceding statements is merely illustrative. The actual syntax may vary from implementation to implementation. The present invention is not limited to any particular syntax. The conversion into the appropriate query is transparent to the current user. Thus, it is not necessary for the current user to be aware of the type of the target data.
Modifying Relational Data Using Uritype Functions
According to certain embodiments, a mechanism is provided to modify, add or delete XML data that is stored in the relational database using the standard URIs and URLs as described herein.
For example, assume that the current user, Scott, is able to see a default virtual visualization of the relational database as follows (not the full visualization):
Further assume that the current user, Scott, would like to update data at the employee-name column of EMP table at the row for which the employee number is 2100. The update comprises changing the name “John” to “Mary”.
According to certain embodiments, if the current user, Scott, has direct access to the relational database, then Scott can perform the following: 1) selects the update operation for updating XML data and 2) uses the following XPath expressions:
The XPath expression /SCOTT/EMP/ROW[EMPNO=2100]/ENAME indicates the row and column of the target data that is to be updated.
The XPath expression <ENAME>Mary</ENAME> indicates the new value of the target data to be updated.
The above XPath expressions are converted into query language statements such as:
If the current user, Scott, is using a web browser to access target data in the relational database, then according to certain embodiments, a general purpose servlet may be provided to allow the current user to modify, add or delete XML data that is stored in the relational database using the standard URIs and URLs. Using the above example of updating the name “John” to “Mary”, a general purpose servlet is provided that allows Scott to perform the following: 1) select the update operation for updating XML data and 2) post to the servlet the “update” information in the form of the following XPath expressions:
According to certain other embodiments, a special servlet may be provided for each database operation. In other words, there may be an “Insert-servlet” for the INSERT operation, a “Delete-servlet” for the DELETE operation, and an “Update-servlet” for the UPDATE operation.
Using the above example of updating the name “John” to “Mary”, an “Insert_servlet” is provided that allows Scott to perform the following: 1) select the update operation for updating XML data and 2) post to the servlet the “update” information in the form of the following XPath expressions:
The same mechanism is used to modify, add or delete metadata. For example, if the current user, Scott would like to delete the schema SCOTT, then Scott can perform the following: 1) selects the delete operation for deleting XML data in the relational database and 2) uses the following XPath expression that indicates which level in the visualized XML document to delete:
Computer system 300 may be coupled via bus 302 to a display 312, such as a cathode ray tube (CRT), for displaying information to a computer user. An input device 314, including alphanumeric and other keys, is coupled to bus 302 for communicating information and command selections to processor 304. Another type of user input device is cursor control 316, such as a mouse, a trackball, or cursor direction keys for communicating direction information and command selections to processor 304 and for controlling cursor movement on display 312. This input device typically has two degrees of freedom in two axes, a first axis (e.g., x) and a second axis (e.g., y), that allows the device to specify positions in a plane.
The invention is related to the use of computer system 300 for implementing the techniques described herein. According to one embodiment of the invention, those techniques are implemented by computer system 300 in response to processor 304 executing one or more sequences of one or more instructions contained in main memory 306. Such instructions may be read into main memory 306 from another computer-readable medium, such as storage device 310. Execution of the sequences of instructions contained in main memory 306 causes processor 304 to perform the process steps described herein. One or more processors in a multi-processing arrangement may also be employed to execute the sequences of instructions contained in main memory 306. In alternative embodiments, hard-wired circuitry may be used in place of or in combination with software instructions to implement the invention. Thus, embodiments of the invention are not limited to any specific combination of hardware circuitry and software.
The term “computer-readable medium” as used herein refers to any medium that participates in providing instructions to processor 304 for execution. Such a medium may take many forms, including but not limited to, non-volatile media, volatile media, and transmission media. Non-volatile media includes, for example, optical or magnetic disks, such as storage device 310. Volatile media includes dynamic memory, such as main memory 306. Transmission media includes coaxial cables, copper wire and fiber optics, including the wires that comprise bus 302. Transmission media can also take the form of acoustic or light waves, such as those generated during radio wave and infrared data communications.
Common forms of computer-readable media include, for example, a floppy disk, a flexible disk, hard disk, magnetic tape, or any other magnetic medium, a CD-ROM, any other optical medium, punch cards, paper tape, any other physical medium with patterns of holes, a RAM, a PROM, and EPROM, a FLASH-EPROM, any other memory chip or cartridge, a carrier wave as described hereinafter, or any other medium from which a computer can read.
Various forms of computer readable media may be involved in carrying one or more sequences of one or more instructions to processor 304 for execution. For example, the instructions may initially be carried on a magnetic disk of a remote computer. The remote computer can load the instructions into its dynamic memory and send the instructions over a telephone line using a modem. A modem local to computer system 300 can receive the data on the telephone line and use an infrared transmitter to convert the data to an infrared signal. An infrared detector coupled to bus 302 can receive the data carried in the infrared signal and place the data on bus 302. Bus 302 carries the data to main memory 306, from which processor 304 retrieves and executes the instructions. The instructions received by main memory 306 may optionally be stored on storage device 310 either before or after execution by processor 304.
Computer system 300 also includes a communication interface 318 coupled to bus 302. Communication interface 318 provides a two-way data communication coupling to a network link 320 that is connected to a local network 322. For example, communication interface 318 may be an integrated services digital network (ISDN) card or a modem to provide a data communication connection to a corresponding type of telephone line. As another example, communication interface 318 may be a local area network (LAN) card to provide a data communication connection to a compatible LAN. Wireless links may also be implemented. In any such implementation, communication interface 318 sends and receives electrical, electromagnetic or optical signals that carry digital data streams representing various types of information.
Network link 320 typically provides data communication through one or more networks to other data devices. For example, network link 320 may provide a connection through local network 322 to a host computer 324 or to data equipment operated by an Internet Service Provider (ISP) 326. ISP 326 in turn provides data communication services through the worldwide packet data communication network now commonly referred to as the “Internet” 328. Local network 322 and Internet 328 both use electrical, electromagnetic or optical signals that carry digital data streams. The signals through the various networks and the signals on network link 320 and through communication interface 318, which carry the digital data to and from computer system 300, are exemplary forms of carrier waves transporting the information.
Computer system 300 can send messages and receive data, including program code, through the network(s), network link 320 and communication interface 318. In the Internet example, a server 330 might transmit a requested code for an application program through Internet 328, ISP 326, local network 322 and communication interface 318. In accordance with the invention, one such downloaded application implements the techniques described herein.
The received code may be executed by processor 304 as it is received, and/or stored in storage device 301, or other non-volatile storage for later execution. In this manner, computer system 300 may obtain application code in the form of a carrier wave.
In the foregoing specification, the invention has been described with reference to specific embodiments thereof. It will, however, be evident that various modifications and changes may be made thereto without departing from the broader spirit and scope of the invention. The specification and drawings are, accordingly, to be regarded in an illustrative rather than a restrictive sense.
This application is related to and claims domestic priority under 35 U.S.C. §119(e) from prior U.S. Provisional Patent Application Ser. No. 60/230,878 filed on Sep. 7, 2000 entitled “XML DATA STORAGE, QUERY REWRITES, VISUALIZATION, MAPPING AND REFERENCING”, by inventors Muralidhar Krishnaprasad, Vishwanathan Krishnamurthy, and Ravi Murthy, the entire disclosure of which is hereby incorporated by reference as if fully set forth herein. This application is related to U.S. patent application Ser. No. 09/948,949, which was filed on Sep. 6, 2001 and issued as U.S. Pat. No. 6,871,204 on Mar. 22, 2005, and which is entitled “APPARATUS AND METHOD FOR MAPPING RELATIONAL DATA AND METADATA TO XML,” naming as inventors Muralidhar Krishnaprasad, Vishwanathan Krishnamurthy, Ravi Murthy and Visar Nimani, the entire disclosure of which is hereby incorporated by reference as if fully set forth herein; and This application is related to U.S. patent application Ser. No. 09/948,998, which was filed on Sep. 6, 2001 and issued as U.S. Pat. No. 7,024,425 on Apr. 4, 2006, and which is entitled “METHOD AND APPARATUS FOR FLEXIBLE STORAGE AND UNIFORM MANIPULATION OF XML DATA IN A RELATIONAL DATABASE SYSTEM”, naming as inventors Muralidhar Krishnaprasad, Vishwanathan Krishnamurthy, and Ravi Murthy, the entire disclosure of which is hereby incorporated by reference as if fully set forth herein.
Number | Name | Date | Kind |
---|---|---|---|
5999941 | Andersen | Dec 1999 | A |
6012067 | Sarkar | Jan 2000 | A |
6240407 | Chang et al. | May 2001 | B1 |
6253195 | Hudis et al. | Jun 2001 | B1 |
6269380 | Terry et al. | Jul 2001 | B1 |
6279006 | Shigemi et al. | Aug 2001 | B1 |
6282537 | Madnick et al. | Aug 2001 | B1 |
6366934 | Cheng et al. | Apr 2002 | B1 |
6418448 | Sarkar | Jul 2002 | B1 |
6438540 | Nasr et al. | Aug 2002 | B2 |
6449620 | Draper et al. | Sep 2002 | B1 |
6510434 | Anderson et al. | Jan 2003 | B1 |
6516327 | Zondervan et al. | Feb 2003 | B1 |
6574655 | Libert et al. | Jun 2003 | B1 |
6584459 | Chang et al. | Jun 2003 | B1 |
6591295 | Diamond et al. | Jul 2003 | B1 |
6604100 | Fernandez et al. | Aug 2003 | B1 |
6636845 | Chau et al. | Oct 2003 | B2 |
6643633 | Chau et al. | Nov 2003 | B2 |
6684204 | Lal | Jan 2004 | B1 |
6721727 | Chau et al. | Apr 2004 | B2 |
6766330 | Chen et al. | Jul 2004 | B1 |
6772413 | Kuznetsov | Aug 2004 | B2 |
6785673 | Fernandez et al. | Aug 2004 | B1 |
6810429 | Walsh et al. | Oct 2004 | B1 |
6871204 | Krishnaprasad et al. | Mar 2005 | B2 |
6918082 | Gross et al. | Jul 2005 | B1 |
6947945 | Carey et al. | Sep 2005 | B1 |
6976210 | Silva et al. | Dec 2005 | B1 |
7028028 | Balmin et al. | Apr 2006 | B1 |
7031956 | Lee et al. | Apr 2006 | B1 |
7043716 | Zimmer et al. | May 2006 | B2 |
7051071 | Stewart et al. | May 2006 | B2 |
7062507 | Wang et al. | Jun 2006 | B2 |
7072896 | Lee et al. | Jul 2006 | B2 |
7124137 | Lin et al. | Oct 2006 | B2 |
7260585 | Krishnaprasad et al. | Aug 2007 | B2 |
20010037345 | Kiernan et al. | Nov 2001 | A1 |
20010047372 | Gorelik et al. | Nov 2001 | A1 |
20020015042 | Robotham et al. | Feb 2002 | A1 |
20020035606 | Kenton | Mar 2002 | A1 |
20020038358 | Sweatt, III et al. | Mar 2002 | A1 |
20020054090 | Silva et al. | May 2002 | A1 |
20020073019 | Deaton | Jun 2002 | A1 |
20020078094 | Krishnaprasad et al. | Jun 2002 | A1 |
20020091725 | Skok | Jul 2002 | A1 |
20020100027 | Binding et al. | Jul 2002 | A1 |
20020116371 | Dodds et al. | Aug 2002 | A1 |
20020116457 | Eshleman et al. | Aug 2002 | A1 |
20020120685 | Srivastava et al. | Aug 2002 | A1 |
20020123993 | Chau et al. | Sep 2002 | A1 |
20020124100 | Adams | Sep 2002 | A1 |
20020133497 | Draper et al. | Sep 2002 | A1 |
20020156772 | Chau et al. | Oct 2002 | A1 |
20020169788 | Lee et al. | Nov 2002 | A1 |
20020169842 | Christensen et al. | Nov 2002 | A1 |
20020184401 | Kadel et al. | Dec 2002 | A1 |
20020198874 | Nasr et al. | Dec 2002 | A1 |
20030014397 | Chau et al. | Jan 2003 | A1 |
20030028563 | Stutz et al. | Feb 2003 | A1 |
20030065659 | Agarwal et al. | Apr 2003 | A1 |
20030126136 | Omoigui | Jul 2003 | A1 |
20030140308 | Murthy et al. | Jul 2003 | A1 |
20030158897 | Ben-Natan et al. | Aug 2003 | A1 |
20030200214 | Doole et al. | Oct 2003 | A1 |
20040006563 | Zwiegincew et al. | Jan 2004 | A1 |
20040015783 | Lennon et al. | Jan 2004 | A1 |
20040064466 | Manikutty et al. | Apr 2004 | A1 |
20040143581 | Bohannon et al. | Jul 2004 | A1 |
20040148278 | Milo et al. | Jul 2004 | A1 |
20040167904 | Wen et al. | Aug 2004 | A1 |
20040193575 | Chen et al. | Sep 2004 | A1 |
20040199524 | Rys et al. | Oct 2004 | A1 |
20040260691 | Desai et al. | Dec 2004 | A1 |
20040267719 | Doherty et al. | Dec 2004 | A1 |
20040267760 | Brundage et al. | Dec 2004 | A1 |
20050004892 | Brundage et al. | Jan 2005 | A1 |
20050022115 | Baumgartner et al. | Jan 2005 | A1 |
20050044078 | deVries et al. | Feb 2005 | A1 |
20050097084 | Balmin et al. | May 2005 | A1 |
20050160076 | Kanemasa | Jul 2005 | A1 |
20050210002 | Pal et al. | Sep 2005 | A1 |
20050289125 | Liu et al. | Dec 2005 | A1 |
20050289138 | Cheng et al. | Dec 2005 | A1 |
20060010124 | Lucas et al. | Jan 2006 | A1 |
20060101320 | Dodds et al. | May 2006 | A1 |
20060224576 | Liu | Oct 2006 | A1 |
20070038780 | Christensen et al. | Feb 2007 | A1 |
20070233645 | Peterson et al. | Oct 2007 | A1 |
20100070448 | Omoigui | Mar 2010 | A1 |
Number | Date | Country |
---|---|---|
WO0133433 | May 2001 | WO |
WO 0165419 | Sep 2001 | WO |
Number | Date | Country | |
---|---|---|---|
20020078094 A1 | Jun 2002 | US |
Number | Date | Country | |
---|---|---|---|
60230878 | Sep 2000 | US |