SQL PL (SQL Procedural Language) is the DB2 implementation of ANSI SQL/PSM. This module extends the SqlLexer lexer of Pygments to support more keywords of SQL PL.
Use the following commands to install the package:
$ cd pygments-sql-pl-lexer $ [sudo] python setup.py install
Simply grep the output of the following command for sqlpl.:
$ pygmentize -L lexers | grep sqlpl
Replace <language> with sqlpl:
\begin{minted}{<language>}
<code>
\end{minted}
For example:
\begin{minted}[linenos=true,frame=single]{sqlpl}
--#SET TERMINATOR @
CREATE OR REPLACE MODULE project @
\end{minted}
produces
