<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Conexion MySQL in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Conexion-MySQL/m-p/1039926#M45605</link>
    <description>&lt;P&gt;Estimados integrantes del Foro,&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Cual es la mejor manera de extraer y añadir datos a una base de datos en MySQL cdesde una aplicacion movil, &amp;nbsp; Y si tienen un ejemplo&amp;nbsp;&lt;/SPAN&gt;básico&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;de el modo&amp;nbsp;de hacerlo. Gracias.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 14 Jun 2014 11:26:35 GMT</pubDate>
    <dc:creator>jorge_eduardo_o_</dc:creator>
    <dc:date>2014-06-14T11:26:35Z</dc:date>
    <item>
      <title>Conexion MySQL</title>
      <link>https://community.intel.com/t5/Software-Archive/Conexion-MySQL/m-p/1039926#M45605</link>
      <description>&lt;P&gt;Estimados integrantes del Foro,&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Cual es la mejor manera de extraer y añadir datos a una base de datos en MySQL cdesde una aplicacion movil, &amp;nbsp; Y si tienen un ejemplo&amp;nbsp;&lt;/SPAN&gt;básico&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;de el modo&amp;nbsp;de hacerlo. Gracias.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Jun 2014 11:26:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Conexion-MySQL/m-p/1039926#M45605</guid>
      <dc:creator>jorge_eduardo_o_</dc:creator>
      <dc:date>2014-06-14T11:26:35Z</dc:date>
    </item>
    <item>
      <title>This is a basic example that</title>
      <link>https://community.intel.com/t5/Software-Archive/Conexion-MySQL/m-p/1039927#M45606</link>
      <description>&lt;P&gt;This is a basic example that i use in one of my Android apps using JDBC,&amp;nbsp;download from: &lt;A href="http://dev.mysql.com/downloads/connector/j"&gt;http://dev.mysql.com/downloads/connector/j&lt;/A&gt;&lt;/P&gt;

&lt;PRE class="brush:java;"&gt;Connection connMySQL;  

public void connectMySQL (String user, String password,  String ip, String port, String catalog)  {
            if (connMySQL == null)    {
            String urlconnMySQL = "";
            if (catalog != ""){
                urlconnMySQL = "jdbc:mysql://" + ip + ":" +    Port + "/" + catalog;
            }else{
                urlconnMySQL = "jdbc:mysql://" + ip + ":" + port;
            }  
            if (user != "" &amp;amp; password != "" &amp;amp; ip != "" &amp;amp; Port != "") {
                try  {
                Class.forName("com.mysql.jdbc.Driver");
                    connMySQL = DriverManager.getConnection(urlconnMySQL, user, password);                    
                } 
                catch (ClassNotFoundException e) {
                      Toast.makeText(getApplicationContext(), e.getMessage(), Toast.LENGTH_SHORT).show();
                } 
                catch (SQLException sqle) {
                    Toast.makeText(getApplicationContext(), sqle.getMessage(),  Toast.LENGTH_SHORT).show();
            }
            }
        }
    }&lt;/PRE&gt;

&lt;P&gt;taken from this nice article:&lt;BR /&gt;
	&lt;A href="http://www.ajpdsoft.com/modules.php?traducir=es-en&amp;amp;name=News&amp;amp;file=article&amp;amp;sid=656" target="_blank"&gt;http://www.ajpdsoft.com/modules.php?traducir=es-en&amp;amp;name=News&amp;amp;file=article&amp;amp;sid=656&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2014 22:10:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Conexion-MySQL/m-p/1039927#M45606</guid>
      <dc:creator>Jorgesys</dc:creator>
      <dc:date>2014-09-24T22:10:00Z</dc:date>
    </item>
  </channel>
</rss>

