MD5 in vb6 hash password

2.7k views Asked by At

How to write md5 hash in vb6 ?

I wrote this syntax but it gives me error in SQL MariaDB:

check the manual that corresponds your MariaDB version for the right syntax to use near'(32),HashBytes ('MD5','Text2'),2

INSERT INTO student (Student_id,password,firstname)VALUES ('" & Text1.Text &" ' , CONVERT( NVARCHAR (32),HashBytes ('MD5' ,'"&Text2.Text&"'        ),2),'"&Text3.Text&"')"
1

There are 1 answers

0
deblocker On