PL/pgSQL

PL/pgSQL
Designed by Jan Wieck
Developer PostgreSQL Global Development Group
First appeared October 30, 1998 (1998-10-30)
Website www.postgresql.org/docs/current/static/plpgsql.html
Influenced by
PL/SQL, Ada

PL/pgSQL (Procedural Language/PostgreSQL) is a procedural programming language supported by the PostgreSQL ORDBMS. It closely resembles Oracle's PL/SQL language. Implemented by Jan Wieck, PL/pgSQL first appeared with PostgreSQL 6.4, released on October 30, 1998.[1] Version 9 also implements some ISO SQL/PSM features, like overloading of SQL-invoked functions and procedures.[2]

PL/pgSQL, as a fully featured programming language, allows much more procedural control than SQL, including the ability to use loops and other control structures. SQL statements and triggers can call functions created in the PL/pgSQL language.

The design of PL/pgSQL aimed to allow Postgresql users to perform more complex operations and computations than SQL, while providing ease of use. The language is able to be defined as trusted by the server.[3]

PL/pgSQL is the only programming language installed by default for PostgreSQL, but many others are available, including PL/Java,[4] PL/Perl,[5] PL/pgPSM,[6] PL/php,[7] PL/Python,[8] PL/R,[9] PL/Ruby,[10] PL/sh, PL/Tcl, PL/Lua and PL/v8. PostgreSQL uses Bison as its parser,[11] making it easy to port many open-source languages, as well as to reuse code.

Comparing with PSM

The SQL/PSM language is specified by an ISO standard, but is also inspired by Oracle's PL/SQL and PL/pgPL/SQL, so there are few differences. The PL/pgPSM contributed module implements the standard. The main features of PSM that differ from PL/pgSQL:[6][12]

All three languages (Oracle PL/SQL,[13] PostgreSQL PL/pgSQL and ISO SQL/PSM[14]) are originally descended from the Ada programming language.

Inline documentation external support

Formal pseud-language for documentation, can be embedded into SQL and PL/pgSQL scripts, and will be processed (documentation data-extraction and documentation hypertext generation) by an external tool, the documentation generator. Some of these tools have support to PL/SQL, so, it is expected to support also PL/pgSQL, in full or partial support.

Tool Full PL/pgSQL Javadoc style Other style PL/pgSQL projects using it
Document! X ? yes yes ?
Natural Docs ? no yes ?
ROBODoc ? yes no ?

Other documentation tools: Doxygen, DBScribe, HyperSQL, Universal Report.

References

  1. "PostgreSQL Documentation, Appendix E: Release Notes, Release 6.4". PostgreSQL Global Development Group.
  2. "feature T322", SQL standard features (9 ed.), PostgreSQL.
  3. "PL/pgSQL – SQL Procedural Language". PostgreSQL. Retrieved 2007-11-15.
  4. "PL/Java", Gborg (project), PostgreSQL.
  5. "PL/Perl", Docs (current ed.), PostgreSQL.
  6. 1 2 SQL/PSM (manual), PostgreSQL.
  7. "PL/PHP", Community, Command prompt.
  8. "PL/Python", Docs (current ed.), PostgreSQL.
  9. Conway, Joe, PL/R.
  10. PL/Ruby (project), Ruby lang.
  11. "Parser stage", Docs (9 ed.), PostgreSQL
  12. Stehule, P, "Proposal: PL/pgPSM for pg9.3", Hackers (mailing list), PostgreSQL.
  13. "C. PL/SQL Program Limits", PL/SQL Language Reference, Database Online Documentation (11g Release 1 (11.1) ed.), Oracle, p. 87, PL/SQL is based on the programming language Ada.
  14. "1", Stored procedures (ODP), O’Reilly.


This article is issued from Wikipedia - version of the 11/8/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.