Hi all, I am creating an app that user can update some loging information and account details throguh the app and it will update to SQL table.
However ,in SQL table strcure password column data type is "varbinary(MAX)" . So my question is how to update the password that user input through the "txt input" to SQL table with conversion of varbinary
Example;
SQL Code : update [tbldialog] set AccountPassword = CONVERT(varbinary,'test@1234') from [tbldialog)] where userId = '256' ;
Thanks in advance!.