In realtà è possibile chiamare stored procedure o funzioni tramite dg4odbc. Ho testato Database Gateway per MS SQL Server , e comunque non è riuscito a supportare nativamente le funzioni a valori scalari/tabella di Sql Server. Entrambi devono fare affidamento su DBMS_HS_PASSTHROUGH.EXECUTE_IMMEDIATE per questa funzionalità. Dovevamo recuperare l'ID delle righe inserite:
DECLARE
RESULT NUMBER(8,2);
val INTEGER;
c INTEGER;
nr INTEGER;
BEGIN
RESULT := [email protected]('select SCOPE_IDENTITY();');
c := [email protected];
[email protected](c, 'select @@IDENTITY');
LOOP
nr := [email protected](c);
EXIT WHEN nr = 0;
[email protected](c, 1, val);
END LOOP;
[email protected](c);
DBMS_OUTPUT.PUT_LINE('retrieved: ' || val);
END;