Hello,
I' d like to know if it is possible to create a C function (and the associated dll) that calls functions from another dll ?
For example
CREATE OR REPLACE FUNCTION MyFunction() RETURNS INTEGER
AS 'MyDll'
LANGUAGE 'c';
with code for MyFunction in MyDll.dll and some others calls in MyOtherDll.dll.
Thank you for your answer.
B.S.