Extracts the elements of the Order document and stores them in a SQL table created by the createOrderTable( ) method. ordersTableName is the name of the target table. server is as described for the OrderXml constructor. For example, if ox is a Java variable of type OrderXml:
ox.order2Sql(“current_orders”, “antibes:4000?user=sa”);
This call extracts the elements of the Order document contained in ox, and uses JDBC to insert the extracted elements into rows and columns of the table named current_orders.
static void createOrderTable(String ordersTableName, String server)