<< Click to Display Table of Contents >> Navigation: WinLicense > FAQ > Registration > Common > How can I export specific information from the database to XML? |
You can use SQL to query the WinLicense database to display and export any specific information from the database.
From the License Manager, click on the "Database" group and select "Manage". In the "SQL Query" text box, you can execute any specific query. For example, if you want to display all the orders that are stored in the database, you can execute something like:
SELECT ID_Order, Product_Name, Customer_FirstName, Customer_LastName
FROM
Orders, Customers, Products
WHERE
Orders.ID_Customer = Customers.ID_Customer AND
Orders.ID_Product = Products.ID_Product
The displayed data can be exported as XML or CSV.