static void createOrderTable (String ordersTableName, String server)

Creates a SQL table with columns suitable for storing Order data: customer_id, order_date, item_id, quantity, and unit. ordersTableName is the name of the new table. The server parameter is as described for the OrderXml constructor. For example:

xml.order.OrderXml.createOrderTable
		 	(“current_orders”, “antibes:4000?user=sa”);

String getOrderElement(String elementName)

elementName is “Date,” “CustomerId,” or “CustomerName.” The method returns the text of the element. For example, if ox is a Java variable of type OrderXml:

String customerId = ox.getOrderElement(“CustomerId”);
String customerName = ox.getOrderElement(“CustomerName”);
String date = ox.getOrderElement(“Date”);