in reply to Re: adding database values to csv file
in thread adding database values to csv file

I am developing a GUI in perl/tk. Its mainly for report preparation purpose. So When I give the required inputs and Click on 'Generate Report' button I want the query fetched result to be put in a csv file. -Vidya Surendran
  • Comment on Re^2: adding database values to csv file

Replies are listed 'Best First'.
Re^3: adding database values to csv file
by Tux (Canon) on Sep 26, 2011 at 09:23 UTC
    $frame->Button ( -text => "Save table FOO", -borderwidth => 1, -highlightthickness => 0, -command => sub { save_table ("foo"); }, )->pack;

    Enjoy, Have FUN! H.Merijn