Save Option in Connect Database Activity

here why is the password visible in the end? i have used connection wizard instead of preparing the connection string

Hi @devasaiprasad_K

You can pass variable as below into the connection string.

"PASSWORD='"+VariableForPassword+"'

Hi @devasaiprasad_K

Because the connection wizard includes the password in plain text in the connection string.

Pls remove the password from the connection string and use the Secure Password property with a SecureString from the Get Secure Credential activity.

If helpful, mark as solution. Happy automation with UiPath

@devasaiprasad_K

connection wizard is used to create the connection string ..instead of using string directly it generates string for us..so whatever you do there will be saved

once the string is generated we can use variables or move the complete string to asset or config file so that no details are present in process

cheers