>I downloaded the WIN95 version. I use it in connection with an
>apache webserver (for the time being all in local mode). I
>downloaded the latest JDBC driver and everything works great.
>
>I use this configuration to develop an webapplication to maintain a
>certain database with information.
>
>When I delete rows from a table (delete from <table>) the result
>says 0 rows affected, while all the rows are deleted. In my opinion
>this should be <number of deleted rows> affected.
That is the documented behavior. If you want to see how many rows
were deleted, use:
DELETE FROM tblname WHERE 1>0;
This is in the manual, chapter 7:
http://www.mysql.com/Manual_chapter/manual_Reference.html#DELETE
--
Paul DuBois, paul@stripped