I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2011-03-02 21:47:48.774374-08 by vivhari
SQL table name extraction
Hi, I need a package or perl script that can filter out only the table names used in a sql query. Even if it is a complex query like below, select * from table1 as t1 left outer join table t2 where t1.member_name = "test" Please help me out Regards Vivek
Direct Responses: 13246 | Write a response
Posted on 2011-03-08 21:10:32.764793-08 by atmh in response to 13233
Re: SQL table name extraction
maybe you want to use DBIx::Class, although it's much much more than just a tool to extract table names. It's a great SQL abstraction module. What is the context of the problem you're trying to resolve anyway?
Direct Responses: Write a response