Hi,
Just to saves somebody elses nerves, all include tags should occur prior database usage if you plan some insertion
<database ...="">select 1 from mytable</database>
<include name="...">
<database ...="">insert into mytable set col1 = 1</database>
this script will cause an exception database close with mysql connector/j on the insert statement
this one runs like a charm (some memory corruption? or plugins reset)
Took me 3 days to figure out :-(
Log in to post a comment.
Hi,
Just to saves somebody elses nerves, all include tags should occur prior
database usage if you plan some insertion
<database ...="">select 1 from mytable</database>
<include name="...">
<database ...="">insert into mytable set col1 = 1</database>
this script will cause an exception database close with mysql connector/j on
the insert statement
<include name="...">
<database ...="">select 1 from mytable</database>
<database ...="">insert into mytable set col1 = 1</database>
this one runs like a charm (some memory corruption? or plugins reset)
Took me 3 days to figure out :-(