pljava
PL/Java procedural language
pljava : PL/Java procedural language
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 3090 | pljava | pljava | 1.6.10 |
LANG | BSD-3-Clause | Java |
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
| --s-d-- | No | Yes | No | Yes | no | no |
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PGDG | 1.6.10 |
18 17 16 15 14 | pljava |
- |
| RPM | PGDG | 1.6.10 |
18 17 16 15 14 | pljava_$v |
- |
| DEB | PGDG | 1.6.10 |
18 17 16 15 14 | postgresql-$v-pljava |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
| el8.x86_64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| el8.aarch64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| el9.x86_64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| el9.aarch64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| el10.x86_64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| el10.aarch64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| d12.x86_64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| d12.aarch64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| d13.x86_64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| d13.aarch64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| u22.x86_64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| u22.aarch64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| u24.x86_64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| u24.aarch64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| u26.x86_64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
| u26.aarch64 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 | PGDG 1.6.10 |
Source
github.com/tada/pljava
Install
Make sure PGDG repo available:
Install this extension with pig:
Create this extension with:
Usage
pljava enables writing PostgreSQL functions, triggers, and types in Java using the standard JDBC API.
Deploy Java Code
Package your Java classes in a JAR file with an SQLJ deployment descriptor, then install it:
Create Functions
Write a Java class with static methods:
Declare the SQL function mapping:
Set-Returning Functions
Implement ResultSetProvider for set-returning functions: