Hello,
I've got problem. I receive phone number hashed by MD5 (00037b319ddf1495b2e7ae64e29a8ef5). I need to get this number from our mysql database.
So mysql query is: SELECT MD5(c.mob) phone, c.mob phone1 FROM db_hu.hu_cust c WHERE MD5(c.mob) IN ('00f9758dd73300b4025ea916c8a3e024');
I should receive result:
But if I read recordset then result is ???????????????? 36202601806:
rs.Open strSql, conn
Do While Not rs.EOF
Debug.Print CStr(rs!phone) & " " & CStr(rs!phone1) ' --> this returns ???????????????? 36202601806 instead of ???????????????? 36202601806
rs.MoveNext
Loop
Have anybody idea how to get 00037b319ddf1495b2e7ae64e29a8ef5 instead of question marks?
Thank you!
I've got problem. I receive phone number hashed by MD5 (00037b319ddf1495b2e7ae64e29a8ef5). I need to get this number from our mysql database.
So mysql query is: SELECT MD5(c.mob) phone, c.mob phone1 FROM db_hu.hu_cust c WHERE MD5(c.mob) IN ('00f9758dd73300b4025ea916c8a3e024');
I should receive result:
But if I read recordset then result is ???????????????? 36202601806:
rs.Open strSql, conn
Do While Not rs.EOF
Debug.Print CStr(rs!phone) & " " & CStr(rs!phone1) ' --> this returns ???????????????? 36202601806 instead of ???????????????? 36202601806
rs.MoveNext
Loop
Have anybody idea how to get 00037b319ddf1495b2e7ae64e29a8ef5 instead of question marks?
Thank you!