PostgreSQL 中 Informix GLOBAL 修饰符的等价物
Equivalent of Informix GLOBAL modifier in PostgreSQL
我需要在 Postgresql 中找到 Informix GLOBAL 修饰符的等效项。
来自 Informix 指南:
GLOBAL 关键字表示后面的变量的引用范围包括给定 DB-Access 或 SQL 管理 API 会话中 运行 的所有 SPL 例程。
Postgres set session "configuration parameters" 具有会话范围:
SET only affects the value used by the current session.
用法示例:
set session "myvars.var1" = '3.1415';
...
select current_setting('myvars.var1');
我需要在 Postgresql 中找到 Informix GLOBAL 修饰符的等效项。 来自 Informix 指南: GLOBAL 关键字表示后面的变量的引用范围包括给定 DB-Access 或 SQL 管理 API 会话中 运行 的所有 SPL 例程。
Postgres set session "configuration parameters" 具有会话范围:
SET only affects the value used by the current session.
用法示例:
set session "myvars.var1" = '3.1415';
...
select current_setting('myvars.var1');