1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
PL/Java for Debian
------------------
To install PL/Java in a database of your choice, run
psql -d DATABASE -f /usr/share/postgresql-$PGVERSION-pljava/install.sql
as user "postgres". To remove it, use
psql -d DATABASE -f /usr/share/postgresql-$PGVERSION-pljava/uninstall.sql
If you install PL/Java in the database "template1", it will
automatically become available in all subsequently created databases.
This variant of PL/Java is compiled using the GNU Compiler for Java
(GCJ). Due to limitations in the implementation of java.security in
GCJ, the PL/Java language is not effectively prevented from accessing
the server system. Therefore, this variant installs the language
"java" as untrusted.
-- Peter Eisentraut <petere@debian.org>, December 2007
|