Topic: Beta version 1.50

Download 1.50 beta
https://www.dropbox.com/s/0m799p8qxh5kb … 0.zip?dl=0



- File structure of the database ("tables.ini") is now in UTF-8 (02/19/2015)



- Added ability to fill TableGrid result of the SQL query using script (02/23/2015)
example: http://myvisualdatabase.com/forum/misc. … download=1



- Added a new field type "Currency" with a customizable format (currently only in TableGrid) (02/25/2015)



- Added function DataSetToXML, allowing to export from a database to XML (02/25/2015)
example:

procedure Form1_Button4_OnClick (Sender: string; var Cancel: boolean);
var
    Results: TDataSet;
begin
    SQLQuery('SELECT FirstName, LastName FROM person', Results);
    DataSetToXML(Results, 'd:\1.xml');
    Results.Free;
end;
Dmitry.