I\'ve got an IDbTransaction in a using statement but I\'m unsure if it will be rolled back if an exception is thrown in a using statement. I know that a using statement will
You have to call commit. The using statement will not commit anything for you.