Connect Activity- Database Automation

Hi, I am new to UiPath… So please bare with me.
I have connected to SQL Server and trying to perform different Execute Non query Activities by creating different sequence workflow.
Is it possible to have only one sequence(of Connect activity to connect to database) and use this to access database to perform different Execute Non query Activities rather than each connect activity in each sequence workflow.Flowchart(Autosaved).xaml (11.1 KB)

we can store the database connection in an argument of type uipath.database.databaseconnection and pass it to all the workflows.
In the execute non query activity ,use this value in the property-“Existing Connection”

2 Likes

thanks sourav, that helped.