Re: feature request for SQL::Statement::Structure

2012-04-07 Thread Jens Rehsack
Am 7. April 2012 01:30 schrieb Jeff Anderson : > Greetings, > > I am wanting to take a SELECT statement and change the names of the > tables without IMMEDIATELY executing that statement. I was hoping that > SQL::Statement would solve the problem but apparently it can only > EXECUTE a statement. Is

Re: feature request for SQL::Statement::Structure

2012-04-07 Thread H.Merijn Brand
On Sat, 7 Apr 2012 08:30:27 +0100, Jens Rehsack wrote: > Am 7. April 2012 01:30 schrieb Jeff Anderson : > > Greetings, > > > > I am wanting to take a SELECT statement and change the names of the > > tables without IMMEDIATELY executing that statement. I was hoping that > > SQL::Statement would so

AUTO: Anne Kline is on vacation (returning 04/16/2012)

2012-04-07 Thread Anne Kline
I am out of the office until 04/16/2012. I am on vacation and traveling the week of 4/7. For questions related to TM Dashboard - pls contact Mike DeFrances or Piyush Bothra, for questions related to ISA - pls contact Mike DeFrances, for questions related to Client References Mobile project - pls

Re: feature request for SQL::Statement::Structure

2012-04-07 Thread Jens Rehsack
Am 7. April 2012 11:04 schrieb Jeff Anderson : > On Sat, Apr 7, 2012 at 12:30 AM, Jens Rehsack wrote: >> Am 7. April 2012 01:30 schrieb Jeff Anderson : >>> Greetings, >>> >>> I am wanting to take a SELECT statement and change the names of the >>> tables without IMMEDIATELY executing that statement

Re: feature request for SQL::Statement::Structure

2012-04-07 Thread Reinier Post
I think I do understand, if it's the same thing that I initially expected when I read that SQL statements are SQL::Statement objects. SQL::Statement can parse and interpret SQL statements. It would be useful to expose an object model for parsed statements allowing the user to read, modify, and cre

Re: feature request for SQL::Statement::Structure

2012-04-07 Thread Reinier Post
P.S. > $stmt->from->join[1]->column = 'salary'; should be $stmt->from->join[1]->table = 'salary'; Sorry about that. The idea is to have something like what the CGI module provides for HTML. -- Reinier