/usr/share/doc/firebird/sql.extensions
SQL Language Extension: EXECUTE STATEMENT Extends already implemented EXECUTE STATEMENT with ability to query external Firebird's databases. Introduced support for input parameters. Authors: Vlad Khorsun <hvlad@users.sourceforge.net> Alex Peshkoff <pes@insi.yaroslavl.ru> Syntax and notes : [FOR] EXECUTE STATEMENT <query_text> [(<input_parameters>)] [ON EXTERNAL [DATA SOURCE] <connection_string>] [WITH AUTONOMOUS | COMMON TRANSACTION] [AS USER <user_name>] [PASSWORD <password>] [ROLE <role_name>] [WITH CALLER PRIVILEGES] [INTO <variables>] - Order of clauses below is not fixed : [ON EXTERNAL [DATA SOURCE] <connection_string>] [WITH AUTONOMOUS TRANSACTION | COMMON TRANSACTION] [AS USER <user_name>] [PASSWORD <password>] [ROLE <role_name>] [WITH CALLER PRIVILEGES] - Duplicate clauses are not allowed - if you use both <query_text> and <input_parameters> then you must enclose <query_text> into round brackets, for example : EXECUTE STATEMENT (:sql) (p1 := 'abc', p2 := :second_param) ... - both named and not named input parameters are supported. Mix of named and not named input parameters in the same statement is not allowed. - syntax of named input parameters <input_parameters> ::= <named_parameter> | <input_parameters>, <named_parameter> <named_parameter> ::= [EXCESS] <parameter name> := <expression> Syntax above introduced new parameter value binding operator ":=" to avoid clashes with boolean expressions. Optional "EXCESS" mark indicates that given parameter allows to be not mentioned at query text. Note, all non-excess input parameters must be used by a query. - if ON EXTERNAL DATA SOURCE clause is omitted then a) statement will be executed against current (local) database b) if AS USER clause is omitted or <user_name> equal to CURRENT_USER and if ROLE clause is omitted or <role_name> equal to CURRENT_ROLE then the statement is executed in current connection context c) if <user_name> is not equal to CURRENT_USER or <role_name> not equal to CURRENT_ROLE then the statement is executed in separate connection established inside the same engine instance (i.e. created new internal connection without Y-Valve and remote layers). - <connection_string> is usual connection string accepted by isc_attach_database, i.e. [<host_name><protocol_delimiter>]database_path. - connection to the external data source is made using the same character set as current (local) connection is used. - AUTONOMOUS TRANSACTION started new transaction with the same parameters as current transaction. This transaction will be committed if the statement is executed ok or rolled back if the statement is executed with errors. - COMMON TRANSACTION a) started new transaction with the same parameters as current transaction, or b) used already started transaction in this connection, or c) used current transaction if current connection is used. This transaction lifetime is bound to the lifetime of current (local) transaction and commits\rolled back the same way as current transaction. - by default COMMON TRANSACTION is used. - if local transaction is READ COMMITTED READ CONSISTENCY and if external data source not supported this isolation mode, then external transaction will run with CONCURRENCY isolation mode. - if PASSWORD clause is omitted then a) if <user_name> is omitted, NULL or equal to CURRENT_USER value and if <role_name> is omitted, NULL or equal to CURRENT_ROLE value then trusted autentication is performed, and a1) for current connection (ON EXTERNAL DATA SOURCE is omitted) - CURRENT_USER/CURRENT_ROLE is effective user account and role a2) for local database (<connection_string> refers to the current database) - CURRENT_USER/CURRENT_ROLE is effective user account and role a3) for remote database - operating system account under which engine process is currently run is effective user account. b) else isc_dpb_user_name (if <user_name> is present and not empty) and isc_dpb_sql_role_name (if <role_name> is present and not empty) will be filled in DPB and native autentication is performed. - if WITH CALLER PRIVILEGES is specified and ON EXTERNAL DATA SOURCE is omitted, then the statement is prepared using additional privileges of caller stored procedure or trigger (if EXECUTE STATEMENT is inside SP\trigger). This causes the same effect as if statement is executed by SP\trigger directly. - Exceptions handling a) if ON EXTERNAL DATA SOURCE clause is present then error information is interpreted by the Firebird itself and wrapped into Firebird own error (isc_eds_connection or isc_eds_statement). This is necessary as in general user application can't interprete or understand error codes provided by (unknown) external data source. Text of interpreted remote error contains both error codes and corresponding messages. a1) format of isc_eds_connection error : Template string Execute statement error at @1 :\n@2Data source : @3 Status-vector tags isc_eds_connection, isc_arg_string, <failed API function name>, isc_arg_string, <text of interpreted external error>, isc_arg_string, <data source name> a2) format of isc_eds_statement error : Template string Execute statement error at @1 :\n@2Statement : @3\nData source : @4 Status-vector tags isc_eds_statement, isc_arg_string, <failed API function name>, isc_arg_string, <text of interpreted external error>, isc_arg_string, <query>, isc_arg_string, <data source name> At PSQL level these errors could be handled using appropriate GDS code, for example WHEN GDSCODE eds_statement Note, that original error codes are not accessible in WHEN statement. This could be improved in the future. b) if ON EXTERNAL DATA SOURCE clause is omitted then original status-vector with error is passed to the caller PSQL code as is. For example, if dynamic statement raised isc_lock_conflict error, this error will be passed to the caller and could be handled using following handler WHEN GDSCODE lock_conflict Examples : 1. insert speed test RECREATE TABLE TTT (TRAN INT, CONN INT, ID INT); a) direct inserts EXECUTE BLOCK AS DECLARE N INT = 100000; BEGIN WHILE (N > 0) DO BEGIN INSERT INTO TTT VALUES (CURRENT_TRANSACTION, CURRENT_CONNECTION, CURRENT_TRANSACTION); N = N - 1; END END b) inserts via prepared dynamic statement using named input parameters EXECUTE BLOCK AS DECLARE S VARCHAR(255); DECLARE N INT = 100000; BEGIN S = 'INSERT INTO TTT VALUES (:a, :b, :a)'; WHILE (N > 0) DO BEGIN EXECUTE STATEMENT (:S) (a := CURRENT_TRANSACTION, b := CURRENT_CONNECTION) WITH COMMON TRANSACTION; N = N - 1; END END c) inserts via prepared dynamic statement using not named input parameters EXECUTE BLOCK AS DECLARE S VARCHAR(255); DECLARE N INT = 100000; BEGIN S = 'INSERT INTO TTT VALUES (?, ?, ?)'; WHILE (N > 0) DO BEGIN EXECUTE STATEMENT (:S) (CURRENT_TRANSACTION, CURRENT_CONNECTION, CURRENT_TRANSACTION); N = N - 1; END END 2. connections and transactions test a) Execute this block few times in the same transaction - it will create three new connections to the current database and reuse it in every call. Transactions are also reused. EXECUTE BLOCK RETURNS (CONN INT, TRAN INT, DB VARCHAR(255)) AS DECLARE I INT = 0; DECLARE N INT = 3; DECLARE S VARCHAR(255); BEGIN SELECT A.MON$ATTACHMENT_NAME FROM MON$ATTACHMENTS A WHERE A.MON$ATTACHMENT_ID = CURRENT_CONNECTION INTO :S; WHILE (i < N) DO BEGIN DB = TRIM(CASE i - 3 * (I / 3) WHEN 0 THEN '\\.\' WHEN 1 THEN 'localhost:' ELSE '' END) || :S; FOR EXECUTE STATEMENT 'SELECT CURRENT_CONNECTION, CURRENT_TRANSACTION FROM RDB$DATABASE' ON EXTERNAL :DB AS USER CURRENT_USER PASSWORD 'masterkey' -- just for example WITH COMMON TRANSACTION INTO :CONN, :TRAN DO SUSPEND; i = i + 1; END END b) Execute this block few times in the same transaction - it will create three new connections to the current database on every call. EXECUTE BLOCK RETURNS (CONN INT, TRAN INT, DB VARCHAR(255)) AS DECLARE I INT = 0; DECLARE N INT = 3; DECLARE S VARCHAR(255); BEGIN SELECT A.MON$ATTACHMENT_NAME FROM MON$ATTACHMENTS A WHERE A.MON$ATTACHMENT_ID = CURRENT_CONNECTION INTO :S; WHILE (i < N) DO BEGIN DB = TRIM(CASE i - 3 * (I / 3) WHEN 0 THEN '\\.\' WHEN 1 THEN 'localhost:' ELSE '' END) || :S; FOR EXECUTE STATEMENT 'SELECT CURRENT_CONNECTION, CURRENT_TRANSACTION FROM RDB$DATABASE' ON EXTERNAL :DB WITH AUTONOMOUS TRANSACTION -- note autonomous transaction INTO :CONN, :TRAN DO SUSPEND; i = i + 1; END END 3. input expressions evaluated only once EXECUTE BLOCK RETURNS (A INT, B INT, C INT) AS BEGIN EXECUTE STATEMENT ('SELECT CAST(:X AS INT), CAST(:X AS INT), CAST(:X AS INT) FROM RDB$DATABASE') (x := GEN_ID(G, 1)) INTO :A, :B, :C; SUSPEND; END 4. Using EXCESS input parameters CREATE PROCEDURE P_EXCESS (A_ID INT, A_TRAN INT = NULL, A_CONN INT = NULL) RETURNS (ID INT, TRAN INT, CONN INT) AS DECLARE S VARCHAR(255); DECLARE W VARCHAR(255) = ''; BEGIN S = 'SELECT * FROM TTT WHERE ID = :ID'; IF (A_TRAN IS NOT NULL) THEN W = W || ' AND TRAN = :a'; IF (A_CONN IS NOT NULL) THEN W = W || ' AND CONN = :b'; IF (W <> '') THEN S = S || W; -- could raise error if TRAN or CONN is null -- FOR EXECUTE STATEMENT (:S) (a := :A_TRAN, b := A_CONN, id := A_ID) -- OK in all cases FOR EXECUTE STATEMENT (:S) (EXCESS a := :A_TRAN, EXCESS b := A_CONN, id := A_ID) INTO :ID, :TRAN, :CONN DO SUSPEND; END
.
Edit
..
Edit
README.PSQL_stack_trace.txt
Edit
README.aggregate_filter.md
Edit
README.aggregate_tracking
Edit
README.alternate_string_quoting.txt
Edit
README.autonomous_transactions.txt
Edit
README.blob_append.md
Edit
README.builtin_functions.txt
Edit
README.case
Edit
README.coalesce
Edit
README.column_type_psql.txt
Edit
README.common_table_expressions
Edit
README.context_variables
Edit
README.context_variables2
Edit
README.cumulative_roles.txt
Edit
README.current_time
Edit
README.cursor_variables.txt
Edit
README.cursors
Edit
README.data_type_results_of_aggregations.txt
Edit
README.data_types
Edit
README.db_triggers.txt
Edit
README.ddl.txt
Edit
README.ddl_access.txt
Edit
README.ddl_triggers.txt
Edit
README.default_parameters
Edit
README.derived_tables.txt
Edit
README.distinct
Edit
README.domains_psql.txt
Edit
README.exception_handling
Edit
README.execute_block
Edit
README.execute_statement
Edit
README.execute_statement2
Edit
README.explicit_locks
Edit
README.expression_indices
Edit
README.external_connections_pool
Edit
README.floating_point_types.md
Edit
README.global_temporary_tables
Edit
README.hex_literals.txt
Edit
README.identity_columns.txt
Edit
README.iif
Edit
README.isc_info_xxx
Edit
README.joins.txt
Edit
README.keywords
Edit
README.leave_labels
Edit
README.length
Edit
README.linger
Edit
README.list
Edit
README.management_statements_psql.md
Edit
README.mapping.html
Edit
README.merge.txt
Edit
README.null_value
Edit
README.nullif
Edit
README.offset_fetch.txt
Edit
README.order_by_expressions_nulls
Edit
README.packages.txt
Edit
README.plan
Edit
README.regr_functions.txt
Edit
README.returning
Edit
README.rows
Edit
README.savepoints
Edit
README.scrollable_cursors.txt
Edit
README.select_expressions
Edit
README.sequence_generators
Edit
README.set_bind.md
Edit
README.set_role
Edit
README.set_transaction.txt
Edit
README.similar_to.txt
Edit
README.sql_security.txt
Edit
README.statistical_functions.txt
Edit
README.subroutines.txt
Edit
README.substring_similar.txt
Edit
README.time_zone.md
Edit
README.trim
Edit
README.universal_triggers
Edit
README.update_or_insert
Edit
README.user_management
Edit
README.view_updates
Edit
README.window_functions.md
Edit