Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This activity inserts Row(s) on a SQL MySQL Server database table.

Activity Parameters

The Insert Row(s) into Table activity parameters can be provided by manual inserted values or via IN arguments or variables:

Image RemovedImage Added

Parameters:

  • Fields (text box editor type) (type: string): the column  the column headers that you want to be returned with the select commandinsert the new values in. If you enter more than one you should separate them with ','. For example: Name,StatusSurname,Company.
  • Table (text box editor type) (type: string): the table name where the row(s) will be inserted.
  • Values (text box editor type) (type: string): the values for specified fields in Fields parameter. If you enter more than one you should separate them with ','. If you have more values each should be placed in the same order as you add the fields.For example: Test,1.

As mentioned above, the values for all the required parameters can be provided by IN arguments or variables. Below is an example of predefined arguments, ready to be used by the Insert Row(s) into Table activity:

Image Removed

  • May,James,Amazon Prime.

The Read Only Output variable are the possible output values that the activity will provide:

  • Output Last ID (type: string): outputs the last row inserted ID.
 

 

Execution: the activity will insert the new row into the selected table and will output the ID of the added row. In the database, the row can be seen at the last position:

 

Image Added

 

 

 

Remove User Access from Database

...