Dr. Charles Bell
Dr. Charles Bell
I will have to confirm, but I’m almost certain you can’t use both at the same time. That aside, how are you initializing the connector? Which library are you specifying...
The small microprocessors you’re using aren’t going to be able to perform round trips to MySQL quickly. The hardware is considerably slower than, say a PC. So, 1 transaction per...
Hi, I am not sure I understand. If you are running your sketch and you unplug the Ethernet cable, the sketch will hang or fail. The connector code does not...
Yes. Comment out those lines and see what happens. If that doesn’t work, I’ve got a couple of other tricks. On Fri, Oct 18, 2019 at 12:16 Newsoul693 wrote: >...
Please post your sketch and stored procedure or PM it to me and I’ll look at it. On Mon, Jul 29, 2019 at 07:05 arti86pl wrote: > When I try...
Ok, I’ll look at an example. In the meantime, what do you see in the serial monitor - anything? > On Jul 29, 2019, at 8:24 AM, arti86pl wrote: >...
Ok, works for me. Try using the show_results() method as a test. Like this: char query[] = "call test_rfid.test_proc('a', '123')"; ... MySQL_Cursor *cur_mem = new MySQL_Cursor(&conn); cur_mem->execute(query); cur_mem->show_results(); If you're...
I am working on a new release. Stay tuned and check back in a couple of weeks. The new release may have a fix, but I cannot confirm. Others suggest...
I am aware this can generate a warning (that can be turned off), but can you confirm by ‘exception’ you mean the code crashes or do you mean “generates a...
Hi. Yes, unfortunately the connector only supports the native authentication. You can read about it more starting here: https://dev.mysql.com/doc/refman/8.0/en/native-pluggable-authentication.html and https://dev.mysql.com/doc/refman/8.0/en/pluggable-authentication.html . One way to solve the problem is to...