<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Programming on FromDual GmbH</title><link>https://www.fromdual.com/tags/programming/</link><description>Recent content in Programming on FromDual GmbH</description><generator>Hugo</generator><language>en-GB</language><managingEditor>oli.sennhauser@fromdual.com (Oli Sennhauser)</managingEditor><webMaster>oli.sennhauser@fromdual.com (Oli Sennhauser)</webMaster><copyright>© FromDual GmbH</copyright><lastBuildDate>Thu, 25 Mar 2021 09:13:15 +0000</lastBuildDate><atom:link href="https://www.fromdual.com/tags/programming/index.xml" rel="self" type="application/rss+xml"/><item><title>MariaDB PL/SQL Examples</title><link>https://www.fromdual.com/blog/mariadb-pl-sql/</link><pubDate>Wed, 04 Dec 2019 21:49:04 +0000</pubDate><author>oli.sennhauser@fromdual.com (Oli Sennhauser)</author><guid>https://www.fromdual.com/blog/mariadb-pl-sql/</guid><description>&lt;h2 id="table-of-contents">Table of Contents&lt;/h2>
&lt;ul>
&lt;li>&lt;a href="https://www.fromdual.com/blog/mariadb-pl-sql/#begin">Before you start&lt;/a>&lt;/li>
&lt;li>&lt;a href="https://www.fromdual.com/blog/mariadb-pl-sql/#infinite-loop">Infinite Loop Example&lt;/a>&lt;/li>
&lt;/ul>
&lt;h2 id="before-you-start">Before you start&lt;/h2>
&lt;pre>&lt;code>SQL&amp;gt; SET SESSION sql_mode='ORACLE';
&lt;/code>&lt;/pre>
&lt;h2 id="infinite-loop-example">Infinite Loop Example&lt;/h2>
&lt;pre>&lt;code>DELIMITER /

BEGIN

LOOP
 SELECT 'Hello world from MariaDB anonymous PL/SQL block!';
END LOOP; 

END;
/

DELIMITER ;
&lt;/code>&lt;/pre></description></item></channel></rss>