Re: best way to store data from signature widget into mysql db

2019-08-13 Thread JJS via use-livecode
Ok yes, i did not think about that. Thanks Ralph for pointing me to that. I will test it. Kind regards, Jerry Op 13-8-2019 om 21:39 schreef Ralph DiMola via use-livecode: If everything is in an array then "arrayEncode" the array and store it in a db. Then arrayDecode it when retrieving it

RE: best way to store data from signature widget into mysql db

2019-08-13 Thread Ralph DiMola via use-livecode
If everything is in an array then "arrayEncode" the array and store it in a db. Then arrayDecode it when retrieving it from the DB. You may also have to base64Encode/base64Decode to eliminate any binary. Ex: (not tested) Put Base64Encode(arrayEncode(sigArray)) into DBdata Put arrayDecode(Base64D