DESCR 693 B

1234567891011121314151617
  1. PLV8 is a shared library that provides a PostgreSQL procedual language
  2. powered by V8 JavaScript Engine. With this program you can write in
  3. JavaScript your function that is callable from SQL.
  4. Supported features are:
  5. * Functions can receive any arguments, and return a value or set of
  6. records.
  7. * Execute any SQL commands with built-in plv8.execute() function.
  8. * Automatic data conversion between PostgreSQL and JavaScript,
  9. including string, numbers, timestamps, arrays, and records.
  10. * Records are converted to JSON which keys are column names.
  11. * Other types are converted to strings.
  12. * Partial support to write TRIGGER handlers.
  13. * EXTENSION support.
  14. * CoffeeScript and LiveScript support.