fglhint_* SQL comments
Using special SQL comment hints to control statement execution.
Syntax
/*
{ fglhint_insert
| fglhint_update
| fglhint_delete
| fglhint_select
| fglhint_other
}
[ fglhint_no_ifxemul ]
*/
The fglhint_*
indicators help the database driver to identify the SQL statement
and control Informix®
emulation:
fglhint_insert
: RegularINSERT
(preparable, without result set).fglhint_update
: RegularUPDATE
(preparable, without result set).fglhint_delete
: RegularDELETE
(preparable, without result set).fglhint_select
: RegularSELECT
(preparable, with result set).fglhint_other
: Any other non-preparable SQL statement (maybe with result set).fglhint_no_ifxemul
: Disable Informix emulation (like the FGLPROFILE entry, but for this statement only).
Usage
When preparing an SQL statement, the ODI database drivers must identify the type of SQL statement, in order to set database client API options to perform the statement properly.
For example, when executing an SELECT
statement that returns a result
set, ODBC options for a server-side cursor must be set with Microsoft® SQL Server clients. If a server-side cursor is not used only
one active cursor is used in a Genero program.
Or, for example, when executing an SELECT
statement that creates
temporary tables with SQL Server, it must be done with a direct ODBC execution (using ODBC
SQLExecDirect instead of SQLPrepare/SQLExecute), otherwise the temporary table is created in the
scope of the sp_prepare() stored procedure, and is dropped immediately after returning from the
sp_prepare() call.
Specified inside /* */
C-style comments, the fglhint_*
keywords can be used as SQL statement recognition directives:
- When the SQL statement looks like a regular
INSERT
statement, but uses anOUTPUT INSERTED.*
clause, add the/* fglhint_select */
SQL comment, to indicate that it must be treated as a regular, preparableSELECT
statement returning a result set. - When the SQL statement looks like a regular
SELECT
statement, but has anINTO newtable
clause to create a new table, add the/* fglhint_insert */
SQL comment, to indicate that it must be treated as a regular, preparableINSERT
statement. - When the SQL statement looks like a regular
SELECT
statement, but has anINTO #newtemptable
clause to create a new temporary table, add the/* fglhint_other */
SQL comment, to indicate that it must be treated as a non-preparableINSERT
statement (to be executed directly).
/* */
C-style comments are only allowed in dynamic SQL statements,
the BDL language does not allow such comments in static SQL statements, which is based
on the Informix-SQL syntax.INSERT
with an
OUTPUT
clause, that will produce a result set. Use the
fglhint_select
hint, to indicate that the statement must be executed as a regular
SELECT
:DECLARE c1 CURSOR
FROM "/* fglhint_select */ INSERT INTO table1 OUTPUT INSERTED.* SELECT * FROM customers"
SELECT INTO newtable
, that will be executed
as an INSERT
(without a result set), because we use the
fglhint_insert
hint:EXECUTE IMMEDIATE "/* fglhint_insert */ SELECT * INTO newtable FROM customers WHERE cust_valid='Y'"
SELECT INTO #temptable
, the statement must be
executed directly without using the sp_prepare/sp_execute procedures of SQL Server
(otherwise the temp table will only exist in the context of the stored procedures).
Therefore, we use the fglhint_other
hint to force a direct SQL
execution:EXECUTE IMMEDIATE "/* fglhint_other */ SELECT * INTO #tmptab1 SELECT * FROM customers"
DECLARE c2 CURSOR FROM "SELECT * FROM #tmptab1 ..."
fglhint_no_ifxemul
hint:PREPARE s1 FROM "/* fglhint_no_ifxemul */ SELECT * FROM [dbo].[mytable]"
fglhint_no_ifxemul
hint, Informix emulation will only be disabled for this SQL
statement. Other SQL statements executed by your program can use the Informix emulations.PREPARE s1 FROM "/* fglhint_no_ifxemul fglhint_select */ INSERT INTO [dbo].[mytable] OUTPUT ..."