Hello every body,
i have a table has username and encrypted password, and i want to write it in different table and i want to decrypt the password filed
and i am using this code
I am selection the data from the login table
<cfquery name="dec" datasource="ds">
select *
from
login_dec
</cfquery>
<cfoutput query="dec">
[B]<cfset dec_password = #Replace(query password filed)#>
<cfset dec_password = #Decrypt(Decrypt password)#>[/B]
<cfquery datasource="ds">
insert into newlogin_dec
(email,password)
values
(
'#email#',
'#dec_password#',
)
</cfquery>
</cfoutput>
what happen is after the execution half of the data transfer successfully but during the process i face this problem
Error Occurred While Processing Request
50
any help, please ...