up vote 3 down vote favorite
3
share [g+] share [fb]

Now I know how one can execute mysql queries \ commands from bash :

mysql -u[user] -p[pass] -e "[mysql commands]"

or

mysql -u[user] -p[pass] `<<`QUERY_INPUT

[mysql commands]

QUERY_INPUT

My question is : How can I capture how many rows where affected by the query? I tried doing:

variable='`mysql -u[user] -p[pass] -e "[mysql commands]"`'

It does execute the command but it does not return the number of affected rows.

Thanks

link|improve this question

80% accept rate
feedback

3 Answers

up vote 5 down vote accepted

Put

SELECT ROW_COUNT();

as the last statement in your batch and parse the output

link|improve this answer
Yes, this does work, and is more elegant and easier to parse the output. Thank you it was very helpful. – theBlinker Jul 5 '09 at 11:38
2  
This was introduced in MySQL 5. If you're stuck using 4.x you'll have to parse the output – Mark Baker Mar 31 '11 at 13:38
feedback

I might have answered myself the question, been looking at the parameters, and aparently using "-v -v -v" as parameters to the mysql command forces it to be more verbose and it spits out how many rows where affected.

link|improve this answer
feedback

Not an answer, but useful addition, you also could try the other MySQL information functions ( which include ROW_COUNT() ) to give you specific information you require. See MySQL reference here

link|improve this answer
How does this help if i run an update query and want to see how many rows have changed? – tobyodavies Jan 5 '11 at 2:42
There is no "verbose dump" anywhere in any of the current answers or the question... – tobyodavies Jan 5 '11 at 2:48
If you looked at the function reference in that link ROW_COUNT() is one of the functions and it states that it provides "The number of rows updated". So why the down vote? – Jason Jan 5 '11 at 2:49
@tobyodavies - my comment about verbose dump was from theBlinker's answer above "using "-v -v -v" as parameters to the mysql command forces it to be more verbose". – Jason Jan 5 '11 at 2:51
ok, i didn't actually see the row_count function last time i looked - i thought you linked to a page without the only function that answered the question. can't un -1 unless u edit – tobyodavies Jan 5 '11 at 3:56
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.