<?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>Comentarios en: Netbeans + conexión Mysql (2ª parte)</title>
	<atom:link href="http://www.codigobeta.com/netbeans/netbeans-conexion-mysql-2%c2%aa-parte.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codigobeta.com/netbeans/netbeans-conexion-mysql-2%c2%aa-parte.html</link>
	<description>Recopilando experiencias... Generando codigo entendible...</description>
	<lastBuildDate>Fri, 04 May 2012 16:30:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Por: frostwire</title>
		<link>http://www.codigobeta.com/netbeans/netbeans-conexion-mysql-2%c2%aa-parte.html/comment-page-1#comment-100</link>
		<dc:creator>frostwire</dc:creator>
		<pubDate>Mon, 11 Apr 2011 10:40:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.codigobeta.com/?p=221#comment-100</guid>
		<description>trying to find you on facebook, wats ur profile</description>
		<content:encoded><![CDATA[<p>trying to find you on facebook, wats ur profile</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Luis</title>
		<link>http://www.codigobeta.com/netbeans/netbeans-conexion-mysql-2%c2%aa-parte.html/comment-page-1#comment-57</link>
		<dc:creator>Luis</dc:creator>
		<pubDate>Sun, 14 Feb 2010 23:37:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.codigobeta.com/?p=221#comment-57</guid>
		<description>Q tal! muy bueno, pero me tira error en el segundo de actuaizar, en el eliminar, sale esto:

&quot;com.mysql.jdbc.NotUpdatable: Result Set not updatable.This result set must come from a statement that was created with a result set type of ResultSet.CONCUR_UPDATABLE, the query must select only one table, and must select all primary keys from that table. See the JDBC 2.1 API Specification, section 5.6 for more details.&quot;

Honestamente no se porq? alguien sabe?

Saludos!</description>
		<content:encoded><![CDATA[<p>Q tal! muy bueno, pero me tira error en el segundo de actuaizar, en el eliminar, sale esto:</p>
<p>&#8220;com.mysql.jdbc.NotUpdatable: Result Set not updatable.This result set must come from a statement that was created with a result set type of ResultSet.CONCUR_UPDATABLE, the query must select only one table, and must select all primary keys from that table. See the JDBC 2.1 API Specification, section 5.6 for more details.&#8221;</p>
<p>Honestamente no se porq? alguien sabe?</p>
<p>Saludos!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Mephesto Khaan</title>
		<link>http://www.codigobeta.com/netbeans/netbeans-conexion-mysql-2%c2%aa-parte.html/comment-page-1#comment-55</link>
		<dc:creator>Mephesto Khaan</dc:creator>
		<pubDate>Sun, 07 Feb 2010 19:26:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.codigobeta.com/?p=221#comment-55</guid>
		<description>De acuerdo, olvidalo lo encontré!

Pensaba que de primeras rs apuntaba a la primera fila, pero es necesario ejecutar al menos una vez el rs.next() (es una BD un poco castaña con un par de tablas de una fila única)

De nuevo gracias! :D</description>
		<content:encoded><![CDATA[<p>De acuerdo, olvidalo lo encontré!</p>
<p>Pensaba que de primeras rs apuntaba a la primera fila, pero es necesario ejecutar al menos una vez el rs.next() (es una BD un poco castaña con un par de tablas de una fila única)</p>
<p>De nuevo gracias! <img src='http://www.codigobeta.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Mephesto Khaan</title>
		<link>http://www.codigobeta.com/netbeans/netbeans-conexion-mysql-2%c2%aa-parte.html/comment-page-1#comment-54</link>
		<dc:creator>Mephesto Khaan</dc:creator>
		<pubDate>Sun, 07 Feb 2010 19:07:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.codigobeta.com/?p=221#comment-54</guid>
		<description>Muchas gracias por todo, me está siendo de gran ayuda, pero tengo una duda!

     public int readAdminID()throws Exception{
         int val = 0;
         try{
             rs = executeConsult(&quot;SELECT ID FROM ADMINISTRATOR;&quot;);
            // val= rs.getInt(1); //&lt;---- problema!
             rs.close();
         }catch(Exception ex){
                 System.out.println(ex + &quot;readAdminID&quot;);
                 val = -1;
         }
         return val;
     }

trozos de código así me dan excepcion si descomento la linea esa, o en general tras la consulta uso rs.getxxx(), ¿Por qué podría ser?

Muchas gracias de nuevo, con tu blog he avanzado un montón!</description>
		<content:encoded><![CDATA[<p>Muchas gracias por todo, me está siendo de gran ayuda, pero tengo una duda!</p>
<p>     public int readAdminID()throws Exception{<br />
         int val = 0;<br />
         try{<br />
             rs = executeConsult(&#8220;SELECT ID FROM ADMINISTRATOR;&#8221;);<br />
            // val= rs.getInt(1); //&lt;&#8212;- problema!<br />
             rs.close();<br />
         }catch(Exception ex){<br />
                 System.out.println(ex + &quot;readAdminID&quot;);<br />
                 val = -1;<br />
         }<br />
         return val;<br />
     }</p>
<p>trozos de código así me dan excepcion si descomento la linea esa, o en general tras la consulta uso rs.getxxx(), ¿Por qué podría ser?</p>
<p>Muchas gracias de nuevo, con tu blog he avanzado un montón!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

