<?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: Stored Procedures in MySQL</title>
	<atom:link href="http://kshitijsharma.net/2009/06/09/stored-procedures-in-mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://kshitijsharma.net/2009/06/09/stored-procedures-in-mysql/</link>
	<description>.NET/ CSLA.NET / ASP.NET / VB.NET / C# / SQL Server / MySql ..</description>
	<lastBuildDate>Mon, 23 Aug 2010 07:19:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Jack</title>
		<link>http://kshitijsharma.net/2009/06/09/stored-procedures-in-mysql/comment-page-1/#comment-308</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Mon, 23 Aug 2010 07:19:12 +0000</pubDate>
		<guid isPermaLink="false">http://kshitijsharma.net/?p=69#comment-308</guid>
		<description>really useful.
thank you, Kshitij.</description>
		<content:encoded><![CDATA[<p>really useful.<br />
thank you, Kshitij.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kshitij Sharma</title>
		<link>http://kshitijsharma.net/2009/06/09/stored-procedures-in-mysql/comment-page-1/#comment-266</link>
		<dc:creator>Kshitij Sharma</dc:creator>
		<pubDate>Sat, 12 Jun 2010 02:13:32 +0000</pubDate>
		<guid isPermaLink="false">http://kshitijsharma.net/?p=69#comment-266</guid>
		<description>Hi Buddy,

Sorry for the delayed answer. 
There are couple of problems in your code. I have make couple of changes in your code. 
Please try following code

DELIMITER &#124;
create procedure actualizar_clace(in codigo int,in vclave varchar(35),in nclave varchar(35))
begin
declare clavef varchar(35);
select usclave into clavef from usuario where uscodigo=codigo;
IF clavef LIKE vclave THEN
	update usuario set usclave=md5(nclave) where uscodigo =codigo;
END IF;
END &#124;

Happy Coding!

Thanks,
Kshitij</description>
		<content:encoded><![CDATA[<p>Hi Buddy,</p>
<p>Sorry for the delayed answer.<br />
There are couple of problems in your code. I have make couple of changes in your code.<br />
Please try following code</p>
<p>DELIMITER |<br />
create procedure actualizar_clace(in codigo int,in vclave varchar(35),in nclave varchar(35))<br />
begin<br />
declare clavef varchar(35);<br />
select usclave into clavef from usuario where uscodigo=codigo;<br />
IF clavef LIKE vclave THEN<br />
	update usuario set usclave=md5(nclave) where uscodigo =codigo;<br />
END IF;<br />
END |</p>
<p>Happy Coding!</p>
<p>Thanks,<br />
Kshitij</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aldo</title>
		<link>http://kshitijsharma.net/2009/06/09/stored-procedures-in-mysql/comment-page-1/#comment-262</link>
		<dc:creator>aldo</dc:creator>
		<pubDate>Wed, 09 Jun 2010 17:08:03 +0000</pubDate>
		<guid isPermaLink="false">http://kshitijsharma.net/?p=69#comment-262</guid>
		<description>create procedure actualizar_clace(in codigo int,in vclave varchar(35),in nclave varchar(35))
    begin
    declare clavef varchar(35);
    select usclave into clavef from usuario where uscodigo=codigo;
    if clavef is like vclave
        update usuario set usclave=md5(nclave) where uscodigo =codigo;
    end if
    end


hi, i have and error at line 3, but i can`t see the error pls help me im new in mysql</description>
		<content:encoded><![CDATA[<p>create procedure actualizar_clace(in codigo int,in vclave varchar(35),in nclave varchar(35))<br />
    begin<br />
    declare clavef varchar(35);<br />
    select usclave into clavef from usuario where uscodigo=codigo;<br />
    if clavef is like vclave<br />
        update usuario set usclave=md5(nclave) where uscodigo =codigo;<br />
    end if<br />
    end</p>
<p>hi, i have and error at line 3, but i can`t see the error pls help me im new in mysql</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kshitij Sharma</title>
		<link>http://kshitijsharma.net/2009/06/09/stored-procedures-in-mysql/comment-page-1/#comment-260</link>
		<dc:creator>Kshitij Sharma</dc:creator>
		<pubDate>Tue, 01 Jun 2010 05:15:04 +0000</pubDate>
		<guid isPermaLink="false">http://kshitijsharma.net/?p=69#comment-260</guid>
		<description>Hi Marin,

You can share it with anyone. I posted articles on blog to share only :).
Thanks for your comments!

Kshitij</description>
		<content:encoded><![CDATA[<p>Hi Marin,</p>
<p>You can share it with anyone. I posted articles on blog to share only <img src='http://kshitijsharma.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .<br />
Thanks for your comments!</p>
<p>Kshitij</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marin Riden</title>
		<link>http://kshitijsharma.net/2009/06/09/stored-procedures-in-mysql/comment-page-1/#comment-259</link>
		<dc:creator>Marin Riden</dc:creator>
		<pubDate>Tue, 01 Jun 2010 00:36:34 +0000</pubDate>
		<guid isPermaLink="false">http://kshitijsharma.net/?p=69#comment-259</guid>
		<description>hey,this is Marin Riden,just observed your Post on google and i must say this blog is great.may I share some of the article found in the post to my local students?i am not sure and what you think?anyway,Thanks!</description>
		<content:encoded><![CDATA[<p>hey,this is Marin Riden,just observed your Post on google and i must say this blog is great.may I share some of the article found in the post to my local students?i am not sure and what you think?anyway,Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sangram</title>
		<link>http://kshitijsharma.net/2009/06/09/stored-procedures-in-mysql/comment-page-1/#comment-256</link>
		<dc:creator>Sangram</dc:creator>
		<pubDate>Sat, 30 Jan 2010 08:03:20 +0000</pubDate>
		<guid isPermaLink="false">http://kshitijsharma.net/?p=69#comment-256</guid>
		<description>excellent illustration!
not even a donkey dare say &#039;I didn&#039;t understand&#039;!
thanks</description>
		<content:encoded><![CDATA[<p>excellent illustration!<br />
not even a donkey dare say &#8216;I didn&#8217;t understand&#8217;!<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Namtuochoahong</title>
		<link>http://kshitijsharma.net/2009/06/09/stored-procedures-in-mysql/comment-page-1/#comment-255</link>
		<dc:creator>Namtuochoahong</dc:creator>
		<pubDate>Mon, 11 Jan 2010 03:42:31 +0000</pubDate>
		<guid isPermaLink="false">http://kshitijsharma.net/?p=69#comment-255</guid>
		<description>Thank you very much. Your tutorial is very good.</description>
		<content:encoded><![CDATA[<p>Thank you very much. Your tutorial is very good.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rochford</title>
		<link>http://kshitijsharma.net/2009/06/09/stored-procedures-in-mysql/comment-page-1/#comment-70</link>
		<dc:creator>Rochford</dc:creator>
		<pubDate>Sun, 12 Jul 2009 19:39:49 +0000</pubDate>
		<guid isPermaLink="false">http://kshitijsharma.net/?p=69#comment-70</guid>
		<description>You explain it with ease.
Thanks
</description>
		<content:encoded><![CDATA[<p>You explain it with ease.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alexbiger</title>
		<link>http://kshitijsharma.net/2009/06/09/stored-procedures-in-mysql/comment-page-1/#comment-13</link>
		<dc:creator>alexbiger</dc:creator>
		<pubDate>Sun, 14 Jun 2009 04:56:49 +0000</pubDate>
		<guid isPermaLink="false">http://kshitijsharma.net/?p=69#comment-13</guid>
		<description>Nice Article. Please Post More on this topic.</description>
		<content:encoded><![CDATA[<p>Nice Article. Please Post More on this topic.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blogomania</title>
		<link>http://kshitijsharma.net/2009/06/09/stored-procedures-in-mysql/comment-page-1/#comment-11</link>
		<dc:creator>blogomania</dc:creator>
		<pubDate>Sat, 13 Jun 2009 06:32:05 +0000</pubDate>
		<guid isPermaLink="false">http://kshitijsharma.net/?p=69#comment-11</guid>
		<description>Thanks.</description>
		<content:encoded><![CDATA[<p>Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
