postgres and python
问题 In postgres 9.2 I am trying to create a python program that can be a trigger. I want to run an external program (an exe on the local disk) so I am using python to run it. When I try to create a simple program like this: CREATE FUNCTION one () RETURNS int AS $$ # PL/Python function body $$ LANGUAGE plpythonu; I get the error: ERROR: language "plpythonu" does not exist HINT: Use CREATE LANGUAGE to load the language into the database. When I run: CREATE LANGUAGE plpythonu I get the error: ERROR: