Skip to main content

Database Connection Scope

An activity used for opening database connections and decide to use transaction or not.

Input

  • Continue on Error: Continue process even an error occurs.
    • Type: System.Boolean
    • Required
  • Use Transaction: If multiple insert, update, or delete operations will be performed in the database and it is desired to roll back other transactions if an error occurs during this process, this should be checked.
    • Type: System.Boolean
    • Required
  • Provider: The name of the database provider used to access the database.
    • Type: System.Int32
    • Dropdown Options:
      • System.Data.OleDb
      • System.Data.SqlClient
      • Oracle.ManagedDataAccess
  • Connection String: The connection string to be used during the database connection.
    • Type: System.String
  • Existing Connection: Previously created existing database connection.
    • Type: ArenaRobotics.Domain.Entities.DatabaseConnection

Output

  • Connection: Created database connection.
    • Type: ArenaRobotics.Domain.Entities.DatabaseConnection