Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/08/2009, 11:23
tirengarfio
 
Fecha de Ingreso: septiembre-2008
Mensajes: 146
Antigüedad: 15 años, 8 meses
Puntos: 1
Respuesta: BD de que no existe dice que existe

Cita:
Iniciado por huesos52 Ver Mensaje
ya probaste creandola estando dentro de mysql?

mysql -uroot -ppassword

create database rs;
Gracias huesos52, veo que dependiendo de como accedas a mysql los resultados varian a la hora de mostrar las BBDD:

Código:
t@t-laptop:/home/aplis_sf/rs/config$ mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 369
Server version: 5.0.51a-3ubuntu5.4 (Ubuntu)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema | 
+--------------------+
1 row in set (0.00 sec)

mysql> exit
Bye
t@t-laptop:/home/aplis_sf/rs/config$ mysql -uroot -p**
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 370
Server version: 5.0.51a-3ubuntu5.4 (Ubuntu)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema | 
| jobeet             | 
| mysql              | 
| rs                 | 
+--------------------+
4 rows in set (0.01 sec)

mysql>
De todos modos, al acceder a phpmyadmin tan solo me aparecen las BBDD "information_schema" y "mysql", alguna idea?