Link to home
Start Free TrialLog in
Avatar of sunny82
sunny82

asked on

Executing multiple sybase statements in perl dbi

Create table #test...
Insert into #test...
Update #test
Select * from #test

Are all these sybase statements possible with a single prepare, execute and fetch call in perl dbi?
Otherwise whats the option?
ASKER CERTIFIED SOLUTION
Avatar of wilcoxon
wilcoxon
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of sunny82
sunny82

ASKER

thanks.

I had to do $dbh->dev_work, put in an eval statement, if successful commit else rollback and execute all those statements in a bunch