Reputation: 33
it can be any language.
is there a library, software, or plugin that will convert the csv to the various formats?
Upvotes: 0
Views: 731
Reputation: 101
There is a nice generic library in perl for doing conversions and treating a bunch of differenct formats (XML, CSV, HTML etc) as hashes. Even extends to direct treatment (DBI) as table data.
AnyData https://metacpan.org/pod/AnyData
Upvotes: 0
Reputation: 41
I just want to add, you can use phpmyadmin of wamp server if you need to import well formatted csv format into mysql database.
Upvotes: 1
Reputation: 24535
I agree with developing your own library since there is always more/custom work to be done; An idea would be to firstly create a process of importing a CSV file into a database. Once its in the database you can easily query and output using the database or using a programming language.
Upvotes: 0
Reputation: 7215
I'd just use the dynamic language of my choice. Most of them have a CSV library and libraries to generate the output you want. Just a few lines and you have written it yourself.
Upvotes: 0
Reputation: 7563
here is a product that converts CSV to other formats/
You could just sed and awk to do the same.
Upvotes: 0