Discussion of article "Applying network functions, or MySQL without DLL: Part II - Program for monitoring changes in signal properties" - page 4

 
bool CMySQLTransaction::Query(string q)

I'm also getting a 5273 error here. I don't know how to work with it yet.

 
ENUM_TRANSACTION_STATE CMySQLTransaction::Incoming(uchar &data[], uint len)
  {
   int ptr=0; // index of the current byte in the data buffer
   ENUM_TRANSACTION_STATE result=MYSQL_TRANSACTION_IN_PROGRESS; // result of processing the received data
   while(len>0)
     {
      if(m_packet.total_length==0)
        {
         //--- If the number of data in the packet is unknown
         while(m_rcv_len<4 && len>0)
           {
            m_hdr[m_rcv_len] = data[ptr];
            m_rcv_len++;
            ptr++;
            len--;
           }
It also fails here with array out of range.
 
leonerd #:
you can't do it from the GUI?

I have 8.0.32.

under root user it says

Transaction Error: MYSQL_ERR_AUTHORIZATION_TIMEOUT

created abcd user, it says:

MySQL Server Error: 1045 (Access denied for user 'abcd'@'localhost' (using password: YES))
 
I have a problematic array out of valid range in 'MySQLPacketReader.mqh' (344,21)
This happened after updating to the latest build 3759, the previous one is fine.
I see that the problem occurs with SocketRead.
Has anyone gone through this?

In buoy.