<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://es.wikieducator.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
		<id>https://es.wikieducator.org/index.php?action=history&amp;feed=atom&amp;title=Curso_Python_DGA_2011%2Fmysql_intro</id>
		<title>Curso Python DGA 2011/mysql intro - Historial de revisiones</title>
		<link rel="self" type="application/atom+xml" href="https://es.wikieducator.org/index.php?action=history&amp;feed=atom&amp;title=Curso_Python_DGA_2011%2Fmysql_intro"/>
		<link rel="alternate" type="text/html" href="https://es.wikieducator.org/index.php?title=Curso_Python_DGA_2011/mysql_intro&amp;action=history"/>
		<updated>2026-06-19T13:23:43Z</updated>
		<subtitle>Historial de revisiones para esta página en el wiki</subtitle>
		<generator>MediaWiki 1.23.14</generator>

	<entry>
		<id>https://es.wikieducator.org/index.php?title=Curso_Python_DGA_2011/mysql_intro&amp;diff=5495&amp;oldid=prev</id>
		<title>Lmorillas: Página creada con '{{MiTitulo| Intro MySQL}}  == Instalar MySQL==  $ sudo apt-get install mysql-server  ==Instalar interfaz de Python==  $ sudo apt-get install python-mysqldb o   $ pip install MyS…'</title>
		<link rel="alternate" type="text/html" href="https://es.wikieducator.org/index.php?title=Curso_Python_DGA_2011/mysql_intro&amp;diff=5495&amp;oldid=prev"/>
				<updated>2011-09-06T19:10:06Z</updated>
		
		<summary type="html">&lt;p&gt;Página creada con &amp;#039;{{MiTitulo| Intro MySQL}}  == Instalar MySQL==  $ sudo apt-get install mysql-server  ==Instalar interfaz de Python==  $ sudo apt-get install python-mysqldb o   $ pip install MyS…&amp;#039;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{MiTitulo| Intro MySQL}}&lt;br /&gt;
&lt;br /&gt;
== Instalar MySQL==&lt;br /&gt;
 $ sudo apt-get install mysql-server&lt;br /&gt;
&lt;br /&gt;
==Instalar interfaz de Python==&lt;br /&gt;
 $ sudo apt-get install python-mysqldb&lt;br /&gt;
o &lt;br /&gt;
 $ pip install MySQL-python&lt;br /&gt;
Si lanza un error de '''EnvironmentError: mysql_config not found''', ejecuta antes:&lt;br /&gt;
 sudo apt-get build-dep python-mysqldb&lt;br /&gt;
== Configurar una base de datos y un usuario ==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;bash&amp;quot;&amp;gt;&lt;br /&gt;
$ mysql -u root -p&lt;br /&gt;
...&lt;br /&gt;
mysql&amp;gt; CREATE DATABASE ejercicios_curso;&lt;br /&gt;
Query OK, 1 row affected (0.01 sec)&lt;br /&gt;
&lt;br /&gt;
mysql&amp;gt; GRANT ALL ON usuariocurso.* TO 'usuariocurso'@'localhost' IDENTIFIED BY 'mypassword';&lt;br /&gt;
Query OK, 0 rows affected (0.03 sec)&lt;br /&gt;
&lt;br /&gt;
mysql&amp;gt; quit&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lmorillas</name></author>	</entry>

	</feed>