You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enhanced clarity and detail in the README.md file for the FlowSynx PostgreSQL Plugin. Key updates include reformatting the title, expanding the plugin description, clarifying supported operations, and updating input parameters to include the `Data` property. Debugging tips have also been improved for better guidance.
#7
The PostgreSQL Plugin is a pre-packaged, plug-and-play integration component for the FlowSynx engine. It enables executing PostgreSQL queries with configurable parameters such as connection strings, SQL templates, and runtime parameters. Designed for FlowSynx’s no-code/low-code automation workflows, this plugin simplifies database integration, data retrieval, and transformation tasks.
4
4
5
5
This plugin is automatically installed by the FlowSynx engine when selected within the platform. It is not intended for manual installation or standalone developer use outside the FlowSynx environment.
6
6
7
-
---
8
-
9
7
## Purpose
10
8
11
9
The PostgreSQL Plugin allows FlowSynx users to:
@@ -15,64 +13,55 @@ The PostgreSQL Plugin allows FlowSynx users to:
15
13
- Perform data transformation and filtering inline using SQL.
16
14
- Integrate PostgreSQL operations into automation workflows without writing code.
17
15
18
-
---
19
-
20
16
## Supported Operations
21
17
22
-
-**query**: Executes a SQL SELECT query and returns the result set as JSON.
23
-
-**execute**: Executes a SQL command (INSERT, UPDATE, DELETE, etc.) and returns the number of affected rows.
24
-
25
-
---
18
+
-**query**: Executes a SQL SELECT query and returns the result set as structured data.
19
+
-**execute**: Executes a SQL command (INSERT, UPDATE, DELETE, etc.) and returns the number of affected rows (as log output).
26
20
27
21
## Plugin Specifications
28
22
29
23
The plugin requires the following configuration:
30
-
- ConnectionString (string): **Required.** The PostgreSQL connection string used to connect to the database. Example:
24
+
-`ConnectionString` (string): **Required.** The PostgreSQL connection string used to connect to the database. Example:
0 commit comments