Dear Lukas, first of all, thank you for your support. Yes, the steps that you wrote are exactly what I did before posting :)
*1. Set auto-commit to false* *2. Insert* *3. Create a break point before the commit **(I didn't do that, this is the only difference)* *4. Use squirrel or phpmyadmin or your favorite database tool, to check whether the table was updated. It shouldn't be **(I'm using MYSQL query builder)* *5. Commit* *6. Check again in your tool. Now, the update should be visible* The factory .insertInto .execute updates the data before the commit. To be sure about the connection on autoCommit=false, I also did: *factory.getConnection().setAutoCommit(false)* *factory.insertInto(....)* *.execute() * Can be a missing configuration? Or can it depend by MySql driver (I'm using version x.x.15 instead x.x.18 as in your tutorial)? Many thanks. Fabio
