vote up 0 vote down star

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

flag

2 Answers

vote up 1 vote down check

Put

SELECT ROW_COUNT();

as the last statement in your batch and parse the output

link|flag
Yes, this does work, and is more elegant and easier to parse the output. Thank you it was very helpful. – theBlinker Jul 5 at 11:38
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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