Skip to main content

CrateDB

The CrateDB node allows you to automate work in CrateDB, and integrate CrateDB with other applications. Robbot Automation has built-in support for a wide range of CrateDB credentials, including executing, inserting, and updating rows in the database.

On this page, you'll find a list of operations the CrateDB node supports and links to more resources.

!!! note "Credentials" Refer to CrateDB credentials for guidance on setting up authentication.

!!! note "Examples and templates" For usage examples and templates to help you get started, take a look at Robbot Automation's CrateDB list.

Basic Operations

  • Execute an SQL query
  • Insert rows in database
  • Update rows in database

Example Usage

This workflow allows you to create a table and insert data into it in CrateDB. You can also find the workflow on Robbot Automation. This example usage workflow would use the following nodes.

  • Start Node
  • [Set](/integrations/builtin/core-nodes/Robbot Automation-nodes-base.set/)

1. Start node

The start node exists by default when you create a new workflow.

2. CrateDB node (Execute Query)

  1. First of all, you'll have to enter credentials for the CrateDB node. You can find out how to do that here.
  2. Select 'Execute Query' from the Operation dropdown list.
  3. Enter the following SQL query in the Query field: CREATE TABLE test (id INT, name STRING);.
  4. Click on the Node tab and toggle Always Output Data to true.
  5. Click on Save to run the node.

3. Set node

  1. Click on the Add Value button and select 'Number' from the dropdown list.
  2. Enter id in the Name field.
  3. Click on the Add Value button and select 'String' from the dropdown list.
  4. Enter name in the Name field.
  5. Enter the value for the name in the Value field.
  6. Click on Save to run the node.

4. CrateDB1 node (Insert)

  1. Select the credentials that you entered in the previous CrateDB node.
  2. Enter test in the Table field.
  3. Enter id, name in the Columns field.
  4. Click on Save to run the node.

FAQs

How to specify the data type of a column?

To specify the data type of a column, append the column name with :type, where type is the data type of that column. For example, if you want to specify the type int for the column id and type text for the column name, you can use the following snippet in the Columns field: id:init,name:text.