I am writing a perl script which will be reading a config file containing multiple database configurations, get a dump of the tables specified and store them in files.
For reading config (xml) I am using XML::Simple which suits my needs pretty well.
However I am stumped upon which module to use to connect to Sybase Databases and get data. My original intention was to use a wrapper module over Sybase BCP utility like Sybase::BCP or Sybase::Blk but looks like these modules do not support 'Out' operation. Is there any other module which I can use? What do experienced perl developers normally do to take dumps of database tables?