RE: Perl DBI - using parameters

2002-02-01 Thread McElwee, Shane
, February 01, 2002 12:53 PM To: McElwee, Shane Cc: '[EMAIL PROTECTED]' Subject: Re: Perl DBI - using parameters On Fri, Feb 01, 2002 at 12:13:41PM -0500, McElwee, Shane wrote: > foreach $i (@table_arr){ > $content = $i; > # print ("table name is: $i \n"); >

Re: Perl DBI - using parameters

2002-02-01 Thread Michael Fowler
On Fri, Feb 01, 2002 at 12:13:41PM -0500, McElwee, Shane wrote: > foreach $i (@table_arr){ > $content = $i; > # print ("table name is: $i \n"); > open( CONTENT, ">$content" ) || die "Can't open file $content"; > my $sth = $dbh->prepare("select * from ?"); > $sth->bind_

Perl DBI - using parameters

2002-02-01 Thread McElwee, Shane
Hi, This is my first effort at perl scripting so forgive my innocence. What I am trying to do is extract schema and data info from a proprietary database into flat files, format those files and import the data and schema into an Oracle database. The initial part of this is capturing the table n