Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Converting text file to access

Status
Not open for further replies.

PJYelton

Programmer
Jan 29, 2003
19
US
Hi all, relatively new to perl and had a quick question. Using a few modules I've been able to easily create and parse excel files. Now my question is, can someone point me to a module that allows me to convert a text file to an access database? I've tried to search for something but to no avail.

Thanks!
 
Take a look at the DBI and specifically DBD::ODBC modules. These modules allow you to read and write from any ODBC database connection. All you need to know is a little SQL for the database you're accessing and perl.

It won't write the data structures for you of course, as databases are generally relational and need some up front work by the developer to be set up, but it will do the trick.

- George
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top