Re: How to iterate through database tables

2009-02-03 Thread Scott Smith
I think his issue is getting list to the server side without concatenating strings. You can't use bind variables as table names or column names. You may be able to write a stored procedure which takes a table name as a variable, does the string concatenation on the server side, and uses

Re: How to iterate through database tables

2009-02-03 Thread Douglas Wilson
On Tue, Feb 3, 2009 at 5:47 AM, Deviloper devilo...@slived.net wrote: But some bad guy could showed up and force the poor developer not to use perl-vars in SQL-Statements for security reasons. Is ist possible to use tablenames like normal bind-variables? Is there a better way to solve this