Skip to content

MySQL

Reference


Query, insert and update data from MySQL.

Version: 1


Connections

Version: 1

null

Properties

NameTypeControl TypeDescription
UsernameSTRINGTEXT
PasswordSTRINGPASSWORD

Actions

Query

Execute an SQL query.

Properties

NameTypeControl TypeDescription
QuerySTRINGTEXTThe raw SQL query to execute. You can use :property1 and :property2 in conjunction with parameters.
Parameters{}OBJECT_BUILDERThe list of properties which should be used as query parameters.

Insert

Insert rows in database.

Properties

NameTypeControl TypeDescription
SchemaSTRINGTEXTName of the schema the table belongs to.
TableSTRINGTEXTName of the table in which to insert data to.
Fields[STRING]ARRAY_BUILDERThe list of the table field names where corresponding values would be inserted.
Values[{}]ARRAY_BUILDERList of field values for corresponding field names

Update

Update rows in database.

Properties

NameTypeControl TypeDescription
SchemaSTRINGTEXTName of the schema the table belongs to.
TableSTRINGTEXTName of the table in which to update data in.
Fields[STRING]ARRAY_BUILDERThe list of the table field names whose values would be updated.
Update KeySTRINGTEXTThe field name used as criteria to decide which rows in the database should be updated.
Values[{}]ARRAY_BUILDERList of field values for corresponding field names.

Delete

Delete rows from database.

Properties

NameTypeControl TypeDescription
SchemaSTRINGTEXTName of the schema the table belongs to.
TableSTRINGTEXTName of the table in which to update data in.
Delete KeySTRINGTEXTName of the field which decides which rows in the database should be deleted.
Criteria Values[{}]ARRAY_BUILDERList of values that are used to test delete key.

Execute

Execute an SQL DML or DML statement.

Properties

NameTypeControl TypeDescription
ExecuteSTRINGTEXTThe raw DML or DDL statement to execute. You can use :property1 and :property2 in conjunction with parameters.
Fields to select[{}]ARRAY_BUILDERList of fields to select from.
Parameters{}OBJECT_BUILDERThe list of values which should be used to replace corresponding criteria parameters.