<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: A Tiny MySQL++ Tutorial; C++ and MySQL; MySQL++ Example</title>
	<atom:link href="http://codingrecipes.com/a-tiny-mysql-tutorial-c-and-mysql-example/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com/a-tiny-mysql-tutorial-c-and-mysql-example</link>
	<description></description>
	<lastBuildDate>Tue, 01 May 2012 00:54:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
	<item>
		<title>By: Jose</title>
		<link>http://codingrecipes.com/a-tiny-mysql-tutorial-c-and-mysql-example/comment-page-1#comment-4090</link>
		<dc:creator>Jose</dc:creator>
		<pubDate>Thu, 09 Feb 2012 21:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=594#comment-4090</guid>
		<description>Hi! when i try co execute the code GDB give me

Program received signal:  “EXC_BAD_ACCESS”.

i&#039;m using Xcode 3.2 - 64-bits</description>
		<content:encoded><![CDATA[<p>Hi! when i try co execute the code GDB give me</p>
<p>Program received signal:  “EXC_BAD_ACCESS”.</p>
<p>i&#8217;m using Xcode 3.2 &#8211; 64-bits</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shahidnx</title>
		<link>http://codingrecipes.com/a-tiny-mysql-tutorial-c-and-mysql-example/comment-page-1#comment-2658</link>
		<dc:creator>shahidnx</dc:creator>
		<pubDate>Thu, 04 Aug 2011 06:25:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=594#comment-2658</guid>
		<description>very nice....</description>
		<content:encoded><![CDATA[<p>very nice&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tyler</title>
		<link>http://codingrecipes.com/a-tiny-mysql-tutorial-c-and-mysql-example/comment-page-1#comment-2056</link>
		<dc:creator>Tyler</dc:creator>
		<pubDate>Sun, 12 Jun 2011 01:13:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=594#comment-2056</guid>
		<description>Whats the parameter on the Connection object for?</description>
		<content:encoded><![CDATA[<p>Whats the parameter on the Connection object for?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Floyd</title>
		<link>http://codingrecipes.com/a-tiny-mysql-tutorial-c-and-mysql-example/comment-page-1#comment-1257</link>
		<dc:creator>Floyd</dc:creator>
		<pubDate>Fri, 13 Aug 2010 14:19:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=594#comment-1257</guid>
		<description>Thank you!

This was more helpful than the documentation on MySQL++&#039;s site.

How would you store a field&#039;s value into a std::string variable though? I passed it through a stringstream since I couldn&#039;t figure it out.

Thanks again</description>
		<content:encoded><![CDATA[<p>Thank you!</p>
<p>This was more helpful than the documentation on MySQL++&#8217;s site.</p>
<p>How would you store a field&#8217;s value into a std::string variable though? I passed it through a stringstream since I couldn&#8217;t figure it out.</p>
<p>Thanks again</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig</title>
		<link>http://codingrecipes.com/a-tiny-mysql-tutorial-c-and-mysql-example/comment-page-1#comment-813</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Thu, 25 Mar 2010 09:42:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=594#comment-813</guid>
		<description>Thanks, its really very clear how to use the MYSQL++ libs. 

Thank you</description>
		<content:encoded><![CDATA[<p>Thanks, its really very clear how to use the MYSQL++ libs. </p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: misiek</title>
		<link>http://codingrecipes.com/a-tiny-mysql-tutorial-c-and-mysql-example/comment-page-1#comment-305</link>
		<dc:creator>misiek</dc:creator>
		<pubDate>Sat, 26 Dec 2009 19:37:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=594#comment-305</guid>
		<description>just letting you know how to convert mysqlpp::string to QString

&lt;pre&gt;&lt;code&gt;
StoreQueryResult ares = query.store();

for (size_t i = 0; i append(&quot;sss&quot; + QString::fromLatin1(ares[i][&quot;login&quot;]));
}
&lt;/code&gt;&lt;/pre&gt;

hope above code will be formatted correctly this time.</description>
		<content:encoded><![CDATA[<p>just letting you know how to convert mysqlpp::string to QString</p>
<pre><code>
StoreQueryResult ares = query.store();

for (size_t i = 0; i append("sss" + QString::fromLatin1(ares[i]["login"]));
}
</code></pre>
<p>hope above code will be formatted correctly this time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: misiek</title>
		<link>http://codingrecipes.com/a-tiny-mysql-tutorial-c-and-mysql-example/comment-page-1#comment-304</link>
		<dc:creator>misiek</dc:creator>
		<pubDate>Sat, 26 Dec 2009 07:50:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=594#comment-304</guid>
		<description>sorry for bombarding this post here my need more help. I was able to solve my above issue with missing StoreQueryResult thing. I was using 2.3.2 of mysql++ lib had to reemerge to unstable 3.0.9 (gentoo OS) my netbeans still highlight the StoreQueryResult as &quot;Unable to resolve identifier&quot; but its g++ compile just fine.

I have another problem, I us qt gui and need to display results from DB in text area so use widget to make this happen but see the error please on below code

StoreQueryResult ares = query.store();
for (size_t i = 0; i append(ares[i][&quot;login&quot;]);
}

error: no matching function for call to ‘QTextEdit::append(const mysqlpp::String&amp;)’

how to convert that ??</description>
		<content:encoded><![CDATA[<p>sorry for bombarding this post here my need more help. I was able to solve my above issue with missing StoreQueryResult thing. I was using 2.3.2 of mysql++ lib had to reemerge to unstable 3.0.9 (gentoo OS) my netbeans still highlight the StoreQueryResult as &#8220;Unable to resolve identifier&#8221; but its g++ compile just fine.</p>
<p>I have another problem, I us qt gui and need to display results from DB in text area so use widget to make this happen but see the error please on below code</p>
<p>StoreQueryResult ares = query.store();<br />
for (size_t i = 0; i append(ares[i]["login"]);<br />
}</p>
<p>error: no matching function for call to ‘QTextEdit::append(const mysqlpp::String&amp;)’</p>
<p>how to convert that ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: misiek</title>
		<link>http://codingrecipes.com/a-tiny-mysql-tutorial-c-and-mysql-example/comment-page-1#comment-303</link>
		<dc:creator>misiek</dc:creator>
		<pubDate>Sat, 26 Dec 2009 06:53:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=594#comment-303</guid>
		<description>uh something went wrong with the post above, please moderate this post, the pasted code looks different.</description>
		<content:encoded><![CDATA[<p>uh something went wrong with the post above, please moderate this post, the pasted code looks different.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: misiek</title>
		<link>http://codingrecipes.com/a-tiny-mysql-tutorial-c-and-mysql-example/comment-page-1#comment-302</link>
		<dc:creator>misiek</dc:creator>
		<pubDate>Sat, 26 Dec 2009 06:52:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=594#comment-302</guid>
		<description>Using Result instead of StoreQueryResult I got working this:

Result result = query.store();

        if (result) {
            mysqlpp::Row row;
            mysqlpp::Row::size_type i;

            for (i = 0; i append(row.raw_data(1));

            }
        }

I still investigate why StoreQueryResult is not enabled.</description>
		<content:encoded><![CDATA[<p>Using Result instead of StoreQueryResult I got working this:</p>
<p>Result result = query.store();</p>
<p>        if (result) {<br />
            mysqlpp::Row row;<br />
            mysqlpp::Row::size_type i;</p>
<p>            for (i = 0; i append(row.raw_data(1));</p>
<p>            }<br />
        }</p>
<p>I still investigate why StoreQueryResult is not enabled.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: misiek</title>
		<link>http://codingrecipes.com/a-tiny-mysql-tutorial-c-and-mysql-example/comment-page-1#comment-301</link>
		<dc:creator>misiek</dc:creator>
		<pubDate>Sat, 26 Dec 2009 03:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.code-head.com/?p=594#comment-301</guid>
		<description>So I have tried Result

Result ares = query.store();

that worked out, not sure why this should be replaced to StoreQueryResults, but any way now have different error :

error: no match for ‘operator[]’ in ‘ares[0]’

what is going on ?!?!, wrrrrr

Please help</description>
		<content:encoded><![CDATA[<p>So I have tried Result</p>
<p>Result ares = query.store();</p>
<p>that worked out, not sure why this should be replaced to StoreQueryResults, but any way now have different error :</p>
<p>error: no match for ‘operator[]’ in ‘ares[0]’</p>
<p>what is going on ?!?!, wrrrrr</p>
<p>Please help</p>
]]></content:encoded>
	</item>
</channel>
</rss>

