Tool Execute SQL
Execute SQL commands on a connected PostgreSQL source. Separate different commands with a semicolon (';').
- Author: O.Conrad (c) 2013
- Menu: Database|PostgreSQL|Tools
Parameters
| Name | Type | Identifier | Description | Constraints |
Output | Tables | Table list, output | TABLES | - | - |
Options | Host | Text, CMD | PG_HOST | Password | - |
Port | Integer, CMD | PG_PORT | - | Minimum: 0 Default: 5432 |
Database | Text, CMD | PG_NAME | Database Name | - |
User | Text, CMD | PG_USER | User Name | - |
Password | Text, CMD | PG_PWD | Password | - |
Available Connections | Choice, GUI | CONNECTION | - | Available Choices: Default: 0 |
SQL Statement | Long text | SQL | - | Default: CREATE TABLE myTable1 (Col1 VARCHAR(255) PRIMARY KEY, Col2 INTEGER); INSERT INTO myTable1 (Col1, Col2) VALUES('First Value', 1); DROP TABLE myTable1;
|
Output | Choice | OUTPUT | - | Available Choices: [0] none [1] message window [2] tables Default: 2 |
Stop on Error | Boolean | STOP | - | Default: 0 |
Command-line
Usage: saga_cmd db_pgsql 6 [-PG_HOST <str>] [-PG_PORT <num>] [-PG_NAME <str>] [-PG_USER <str>] [-PG_PWD <str>] [-SQL <str>] [-TABLES <str>] [-OUTPUT <str>] [-STOP <str>]
-PG_HOST:<str> Host
Text, CMD
-PG_PORT:<num> Port
Integer, CMD
Minimum: 0
Default: 5432
-PG_NAME:<str> Database
Text, CMD
-PG_USER:<str> User
Text, CMD
-PG_PWD:<str> Password
Text, CMD
-SQL:<str> SQL Statement
Long text
Default: CREATE TABLE myTable1 (Col1 VARCHAR(255) PRIMARY KEY, Col2 INTEGER);
INSERT INTO myTable1 (Col1, Col2) VALUES('First Value', 1);
DROP TABLE myTable1;
-TABLES:<str> Tables
Table list, output
-OUTPUT:<str> Output
Choice
Available Choices:
[0] none
[1] message window
[2] tables
Default: 2
-STOP:<str> Stop on Error
Boolean
Default: 0