Hi, Przemek Lisowski <[email protected]> writes: > HOW LOAD DLL AND USE MY EXTERNAL > FUNCTION ?
You need to declare it in SQL, maybe like this: create function public.transform(text) returns text as '$libdir/fservice', 'transform' language C; See also the LOAD command and the CREATE EXTENSION documentation for how to organise testing and shipping of your code. Regards, -- Dimitri Fontaine http://2ndQuadrant.fr PostgreSQL : Expertise, Formation et Support -- Sent via pgsql-hackers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers
