CreateLang80 » History » Version 1
Álvaro Herrera, 11/16/2005 01:17 PM
1 | 1 | Álvaro Herrera | = Creating the PL/php language in a PostgreSQL 8.0 database = |
---|---|---|---|
2 | |||
3 | In 8.0 you need to create the PL/php language using these commands: |
||
4 | |||
5 | {{{ |
||
6 | CREATE FUNCTION plphp_call_handler() RETURNS language_handler |
||
7 | LANGUAGE C AS '$libdir/plphp', 'plphp_call_handler'; |
||
8 | |||
9 | CREATE FUNCTION plphp_validator(oid) RETURNS language_handler |
||
10 | LANGUAGE C AS '$libdir/plphp', 'plphp_validator'; |
||
11 | |||
12 | CREATE TRUSTED LANGUAGE plphp |
||
13 | HANDLER plphp_call_handler |
||
14 | VALIDATOR plphp_validator; |
||
15 | |||
16 | CREATE LANGUAGE plphpu |
||
17 | HANDLER plphp_call_handler |
||
18 | VALIDATOR plphp_validator; |
||
19 | }}} |
||
20 | (note you '''DON'T''' have to edit the $libdir. Leave it alone. It will be expanded by PostgreSQL automatically.) |
||
21 | |||
22 | This will create entries for the trusted and untrusted versions of PL/php. Note that you need to repeat these steps in every database you want to use PL/php in. You may want to create it in the template1 database so that it's automatically created in new databases. |
||
23 | |||
24 | Now the language is ready to be used. |
||
25 | |||
26 | If you receive an error similar to: |
||
27 | |||
28 | {{{ |
||
29 | ERROR: could not load library "/usr/local/lib/postgresql/plphp.so": |
||
30 | libphp4.so: cannot open shared object file: No such file or directory |
||
31 | }}} |
||
32 | |||
33 | it means the Postmaster can't find the PHP shared library. A solution |
||
34 | you may use is to define the LD_LIBRARY_PATH to postmaster, like so: |
||
35 | |||
36 | {{{ |
||
37 | LD_LIBRARY_PATH=/usr/lib/apache2/modules:$LD_LIBRARY_PATH postmaster |
||
38 | }}} |
||
39 | |||
40 | Of course this isn't ideal. You may want to define the variable somewhere in your start script (/etc/init.d/postgresql or whatever). This is too varied across Linux distributions or other operating systems so I'll leave it as an exercise to the reader. |