MySQL Forums
Forum List  »  Connector/Arduino

Re: Reconnecting to mysql connector
Posted by: Noam Parness
Date: January 06, 2014 01:59PM

After another week of playing with it, I have another update:
I think I've narroewed the problem down some more. If the Arduino sends a request to the server, and doesn't get a response in a timely manner, it hangs.
Increasing the MAX_TIMEOUT from 10 to 20 helped some, but it still tends to hang at some point.
I changed my code so that I make the connection to the MySQL server inside the loop, right before I send the query. I then close the connection afterward. Since I only send the query if the connection is successful, I had hoped that would fix the issue for me. It was more stable for a number of hours, but it still hangs if the connection is lost (or times out) after the connection is made - but before the response is recevied by the Arduino.
My programming skills are not all that great, so I can't figure out where it is hanging, other than it seems to be right after the "wait_for_client()" function exits after being called the second time by the "read_packet()" function. (If that doesn't make any sense, then I *really* don't understand the code ;-) ).
I'm guessing that the timeout is creating a state which is not covered by the conditions in the nested functions - so it sits there forever instead of exiting out.

Options: ReplyQuote


Subject
Views
Written By
Posted
14432
November 01, 2013 01:10AM
3777
November 01, 2013 10:22PM
3459
November 06, 2013 06:48AM
2967
November 06, 2013 09:35AM
3157
November 07, 2013 08:47AM
2722
November 11, 2013 02:03PM
4005
December 18, 2013 01:48PM
2976
December 18, 2013 03:48PM
3057
December 29, 2013 09:48AM
2551
December 30, 2013 03:15PM
2565
December 31, 2013 11:50AM
Re: Reconnecting to mysql connector
2758
January 06, 2014 01:59PM
2516
February 04, 2014 03:45PM
2475
February 04, 2014 04:20PM
2663
February 05, 2014 01:15PM
3454
February 05, 2014 02:36PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.