Tag: Open Source

Community

Batch Updates with PL/pgSQL

(David E. Wheeler) The previous article in this series, Practical PL/pgSQL: Managing Ordered Sets, created four functions to simplify the management of ordered collections as many-to-many relationships. The two more complex functions, entry_coll_tag_set() and entry_coll_tag_add(), take an iterative

Community

Stored Procedures with MySQL

(Shekhar Govindarajan) Most enterprise grade databases support stored procedures, which have two essential advantages. First, stored procedures reside in the database (such as tables and indexes) and the database queries in the stored procedures are executed at the database side. It yields faster re