in reply to Re: Re: DBD::ANYDATA create table help please.
in thread DBD::ANYDATA create table

$sth->execute( $ladder_table, $ladder_table_fields[0], $ladder_table_fields[1],...
You probably meant this instead... :-)
$sth->execute( $ladder_table, @ladder_table_fields );

Replies are listed 'Best First'.
Re: Re: Re: Re: DBD::ANYDATA create table help please.
by jeremyh (Beadle) on Jan 28, 2004 at 19:29 UTC
    Actually I couldn't get

    $sth->execute( $ladder_table, @ladder_table_fields ); to work.

    I didn't think of join, like in your example.

    Does it (the array as a list) work on your installation?