Source: factory.core/ObjNocoDB.py
A class to handle NocoDB connections and API interactions, leveraging the global
configuration for setup.
| Method | Signature | Description |
|---|---|---|
| get_connection_credentials | get_connection_credentials() |
Loads NocoDB connection credentials from the global configuration. |
| get_table_records | get_table_records(table_id, params = None) |
Retrieves records from a specific table. |
| insert_record | insert_record(table_id, data) |
Inserts a new record into a table. |
| update_record | update_record(table_id, record_id, data) |
Updates an existing record in a table. |
| delete_record | delete_record(table_id, record_id) |
Deletes a record from a table. |
Connects to NocoDB and fetches records from the test table specified in the config.