<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Erlang MySQL Driver, Reloaded</title>
	<atom:link href="http://yarivsblog.com/articles/2006/09/13/erlang-mysql-driver-reloaded/feed/" rel="self" type="application/rss+xml" />
	<link>http://yarivsblog.com/articles/2006/09/13/erlang-mysql-driver-reloaded/</link>
	<description>Adventures in Open Source Erlang</description>
	<pubDate>Fri, 16 May 2008 04:07:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Trokhon</title>
		<link>http://yarivsblog.com/articles/2006/09/13/erlang-mysql-driver-reloaded/#comment-108467</link>
		<dc:creator>Trokhon</dc:creator>
		<pubDate>Sun, 09 Mar 2008 15:30:27 +0000</pubDate>
		<guid isPermaLink="false">#comment-108467</guid>
		<description>found out by myself: everything works fine :)</description>
		<content:encoded><![CDATA[<p>found out by myself: everything works fine :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trokhon</title>
		<link>http://yarivsblog.com/articles/2006/09/13/erlang-mysql-driver-reloaded/#comment-108446</link>
		<dc:creator>Trokhon</dc:creator>
		<pubDate>Sun, 09 Mar 2008 13:21:21 +0000</pubDate>
		<guid isPermaLink="false">#comment-108446</guid>
		<description>should read MYSQL column, and of course with prepared statements?</description>
		<content:encoded><![CDATA[<p>should read MYSQL column, and of course with prepared statements?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Trokhon</title>
		<link>http://yarivsblog.com/articles/2006/09/13/erlang-mysql-driver-reloaded/#comment-108445</link>
		<dc:creator>Trokhon</dc:creator>
		<pubDate>Sun, 09 Mar 2008 13:20:09 +0000</pubDate>
		<guid isPermaLink="false">#comment-108445</guid>
		<description>Is it possible to insert Erlang float  into float MYQL columns
with this library ?</description>
		<content:encoded><![CDATA[<p>Is it possible to insert Erlang float  into float MYQL columns<br />
with this library ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin's personal blog</title>
		<link>http://yarivsblog.com/articles/2006/09/13/erlang-mysql-driver-reloaded/#comment-100461</link>
		<dc:creator>Martin's personal blog</dc:creator>
		<pubDate>Sat, 16 Feb 2008 20:11:55 +0000</pubDate>
		<guid isPermaLink="false">#comment-100461</guid>
		<description>&lt;strong&gt;Mysql Erlang Client...&lt;/strong&gt;



				Original Auszug unter: In my quest to make ErlyDB
a top-notch database abstraction tool (since I’m planning on using it
myself, I wouldn’t want it to be any less  ), I have spent the past
few days improving the Yxa MySQL driver for Erlan...</description>
		<content:encoded><![CDATA[<p><strong>Mysql Erlang Client&#8230;</strong></p>
<p>				Original Auszug unter: In my quest to make ErlyDB<br />
a top-notch database abstraction tool (since I’m planning on using it<br />
myself, I wouldn’t want it to be any less  ), I have spent the past<br />
few days improving the Yxa MySQL driver for Erlan&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erlang Blues I &#171; Devender&#8217;s Weblog</title>
		<link>http://yarivsblog.com/articles/2006/09/13/erlang-mysql-driver-reloaded/#comment-70177</link>
		<dc:creator>Erlang Blues I &#171; Devender&#8217;s Weblog</dc:creator>
		<pubDate>Thu, 06 Dec 2007 17:13:21 +0000</pubDate>
		<guid isPermaLink="false">#comment-70177</guid>
		<description>[...] seems to be no documentation on how to use this, I finally found a blog with some so I gave it a try, apparently it only works if there is a password, if your password is [...]</description>
		<content:encoded><![CDATA[<p>[...] seems to be no documentation on how to use this, I finally found a blog with some so I gave it a try, apparently it only works if there is a password, if your password is [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dmitrii Dimandt aka Mamut</title>
		<link>http://yarivsblog.com/articles/2006/09/13/erlang-mysql-driver-reloaded/#comment-346</link>
		<dc:creator>Dmitrii Dimandt aka Mamut</dc:creator>
		<pubDate>Fri, 15 Sep 2006 04:03:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-346</guid>
		<description> I think it's wrong to assume that all strings should be returned as list, where often all you want to do is send the string to the browser verbatim, in which case a binary is more efficient. //


Good point. Didn't think about that :)</description>
		<content:encoded><![CDATA[<p>I think it&#8217;s wrong to assume that all strings should be returned as list, where often all you want to do is send the string to the browser verbatim, in which case a binary is more efficient. //</p>
<p>Good point. Didn&#8217;t think about that :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yariv</title>
		<link>http://yarivsblog.com/articles/2006/09/13/erlang-mysql-driver-reloaded/#comment-345</link>
		<dc:creator>Yariv</dc:creator>
		<pubDate>Thu, 14 Sep 2006 17:48:16 +0000</pubDate>
		<guid isPermaLink="false">#comment-345</guid>
		<description>This example shows how to use the MySQL driver directly and hence it's not recommended for use in a production system. ErlyDB (alpha) currently doesn't help you avoid SQL injection attacks except for in simple queries. However, I'm currently working on a SQL query generator that will be included in the next version of ErlyDB. It will prevent SQL injection attacks and hence will be the preferred way of running using MySQL from Erlang.</description>
		<content:encoded><![CDATA[<p>This example shows how to use the MySQL driver directly and hence it&#8217;s not recommended for use in a production system. ErlyDB (alpha) currently doesn&#8217;t help you avoid SQL injection attacks except for in simple queries. However, I&#8217;m currently working on a SQL query generator that will be included in the next version of ErlyDB. It will prevent SQL injection attacks and hence will be the preferred way of running using MySQL from Erlang.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Jenson</title>
		<link>http://yarivsblog.com/articles/2006/09/13/erlang-mysql-driver-reloaded/#comment-344</link>
		<dc:creator>Steve Jenson</dc:creator>
		<pubDate>Thu, 14 Sep 2006 16:38:39 +0000</pubDate>
		<guid isPermaLink="false">#comment-344</guid>
		<description>Does ErlyDB have any protection against SQL Injection attacks? Your examples show you creating sql directly from potential user input.</description>
		<content:encoded><![CDATA[<p>Does ErlyDB have any protection against SQL Injection attacks? Your examples show you creating sql directly from potential user input.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charles</title>
		<link>http://yarivsblog.com/articles/2006/09/13/erlang-mysql-driver-reloaded/#comment-343</link>
		<dc:creator>Charles</dc:creator>
		<pubDate>Thu, 14 Sep 2006 08:40:07 +0000</pubDate>
		<guid isPermaLink="false">#comment-343</guid>
		<description>You're on the right track. Keep up the good work, Yariv!</description>
		<content:encoded><![CDATA[<p>You&#8217;re on the right track. Keep up the good work, Yariv!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Coder</title>
		<link>http://yarivsblog.com/articles/2006/09/13/erlang-mysql-driver-reloaded/#comment-342</link>
		<dc:creator>Coder</dc:creator>
		<pubDate>Thu, 14 Sep 2006 08:24:34 +0000</pubDate>
		<guid isPermaLink="false">#comment-342</guid>
		<description>Fantastic work! Just what we needed for our killer application.
</description>
		<content:encoded><![CDATA[<p>Fantastic work! Just what we needed for our killer application.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
