hi...

if i process multiple subsequent sql where the later statements might be
dependent on the completion of the former/earlier sql statement, will this
cause a problem...

ie:
$dbh->do("SET AUTOCOMMIT=0");

eval
{
$dbh->do("insert into foo(Name,Vorname,Konto) values
('Ehmann','Andres',710235434)");
$dbh->do("insert into testofix (Name)
          select cat foo.Name
          from foo
          where foo.Name='tom'");
};

in this case, the 2nd statement might/would depend on the results of the 1st
statement... would this possibly cause an issue...??? i didn't get a clear
understanding from mysql/google as to whether this might cause an issue...

comments/criticisms/thoughts/etc...

thanks

-bruce



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to