hello

the following statement works perfectly:

$sth->bind_columns(\$f1data, \$f2data, \$f3data);

however, if i do this

$bind = "bind_columns(" . "\\" . '$f1data, ' . "\\" . '$f2data, ' . "\\" .
'$f3data)';
$sth->$bind;

when i run the script i get ...
Can't locate object method "bind_columns(\$f1data, \$f2data, \$f3data)"
via package "DBI::st" at 2makexml.pl line 54.

any suggestions????

thank you in advance!

-- 
Mario R. Sanchez, Ph.D.
High Performance Database Research Center
NASA Regional Application Center
Florida International University
11200 SW 8th ST
Mail Stop ECS 243c
Miami, FL 33199

_______________________________________________
ActivePerl mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to