Chris Lightfoot wrote:
> On Tue, Jul 25, 2006 at 02:42:13PM -0700, Marc Perkel wrote:
>
>> sub mysql {
>> my $query = $dbh->prepare($_);
>>
> you almost certainly want $_[0] (first passed parameter)
> here. Not really on-topic for this list though.
>
>
>
Yes - but that processes the first parameter. I also tried my $query
= $dbh->prepare(join('',$_)); but some of the parameters are comping
across as number. What I need is print like processing to make a single
string to pass.