MichalK73 Well-Known Member Licensed User Longtime User Mar 29, 2016 #2 B4X: c= m.Get("Camp1")&" - " Upvote 0
MichalK73 Well-Known Member Licensed User Longtime User Mar 29, 2016 #3 Wrong Dim m The Map Dim c the string Good Dim m as Map Dim c as String Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Mar 31, 2016 #4 Please upload a small running project that demonstrates the problem. Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Apr 1, 2016 #5 What is the output of: Log(GetType(mK.Get("NUMREG"))) ? As a general rule I don't recommend you to use the MySQL library. Use RDC instead. Upvote 0
What is the output of: Log(GetType(mK.Get("NUMREG"))) ? As a general rule I don't recommend you to use the MySQL library. Use RDC instead.
Erel B4X founder Staff member Licensed User Longtime User Apr 3, 2016 #6 Your solution is less secure than using RDC. Have you posted the output of: Log(GetType(mK.Get("NUMREG"))) ? Upvote 0
Your solution is less secure than using RDC. Have you posted the output of: Log(GetType(mK.Get("NUMREG"))) ?
Erel B4X founder Staff member Licensed User Longtime User Apr 4, 2016 #7 macerau said: Log(GetType(mK.Get("NUMREG"))) = "0000088" in the above post I put up a picture of the contents of the list! Click to expand... If you want me to further help you then please post the output of Log(GetType(mK.Get("NUMREG"))). It cannot be that string. Also post the full error message from the logs. Upvote 0
macerau said: Log(GetType(mK.Get("NUMREG"))) = "0000088" in the above post I put up a picture of the contents of the list! Click to expand... If you want me to further help you then please post the output of Log(GetType(mK.Get("NUMREG"))). It cannot be that string. Also post the full error message from the logs.
DonManfred Expert Licensed User Longtime User Apr 4, 2016 #8 macerau said: the problem is in reading a field of type varchar (1999) filled with 500 characters) on a remote base MySQL Click to expand... Use TEXT for any texts >200 bytes instead of varchar Upvote 0
macerau said: the problem is in reading a field of type varchar (1999) filled with 500 characters) on a remote base MySQL Click to expand... Use TEXT for any texts >200 bytes instead of varchar
Erel B4X founder Staff member Licensed User Longtime User Apr 5, 2016 #9 Don't catch the error. Instead right click on the logs and post the full error message. Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Apr 7, 2016 #10 Based on the error message, mK is a List and not a Map. This means that the value returned in LL.Get(1) is a List. Upvote 0
Based on the error message, mK is a List and not a Map. This means that the value returned in LL.Get(1) is a List.