> --thanks for the reply. > > --i see the same example in the Perldoc for DBI, > --but what i don't see is if i can substitute: > > > >>> $sth->execute('Bill', 32);
$sth->execute($dbh->selectrow_array('select tableowner from t_table')); I havn't trested this but it should because "Bill" and "32" in the above example is an array and selectrow_array returns an array. Try that and let me know if it works. HTH DMuey > > with something like this: > >>> $sth->execute ('select tableowner from t_table'); -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]