I have a feeling this is dependent on the underlying ADO libraries. If I have two DELETE statements in a single ibatis statement, do I get the count from just the last DELETE? I'm using SQL Server.
<delete id="DeleteUser" parameterClass="int"> DELETE FROM Roles WHERE UserId = #value#; DELETE FROM User WHERE UserId = #value#; </delete>