How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

plRuby

calendar_today July 31, 2026 domain postgresql

PL/Ruby is a procedural-language handler that lets you write database functions in Ruby , stored and executed inside PostgreSQL. You get the expressiveness of Ruby and its standard library with the full power of a native PostgreSQL function: plain functions, set-returning functions, triggers, event triggers, and procedures with transaction control. ```sql CREATE EXTENSION plruby; CREATE FUNCTION hello(text) RETURNS text LANGUAGE plruby AS \("Hello, #{args[0]}!"\); SELECT hello(‘world’); – Hello, world!

open_in_new Read original post