fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

10K
active users

Digital Freedom Foundation

Looking forward to . What tools do you use to read files? Any FOSS tools to copy CSVs to/from databases? Is there a , ODBC driver for connecting to CSV files?

@dff I am using Visidata regularly. Also go-awk can be recommended since it has an csv input mode.

@dff i like R and magrittr a lot and dplyr is really good for abstracting database specifics while manipulating data declaratively. not familiar with ODBC

@dff I'm currently adding CSV support to an ETL tool I'm writing. I decided to use ODBC and a CSV/text driver to access the CSV files because it lets me treat the CSV files very similar to how I treat the databases I connect with. I've tried both unixODBC and iODBC with my programs. Windows comes with ODBC support and a text driver. Looking for a CSV driver for Linux and AIX now.

@dff I noticed seems to have functionality for dealing with and manipulating files as well.

@dff Searching the site, it looks like there was a text/#csv driver called with LGPL license. I'm not seeing the code in the latest version of unixODBC even though the driver is listed at their site. However, much older versions of unixODBC had a txt subdirectory under Drivers with the code. Wonder if anyone's using this driver and how hard it would be to get it built and working.