View Single Post
  #9 (permalink)  
Old 10-26-08, 07:36 PM
job0107's Avatar
job0107 job0107 is offline
Community Liaison
 
Join Date: Dec 2006
Location: Tacoma, Washington USA
Posts: 3,454
Thanks: 0
Thanked 140 Times in 137 Posts
Quote:
Originally Posted by tirengarfio View Post
Hi,

thanks, i think your are wrong, don't you? :

Code:
mysql> show databases
    -> ;
+--------------------+
| Database           |
+--------------------+
| information_schema | 
| cdcol              | 
| ejemplo            | 
| mysql              | 
| phpmyadmin         | 
| prueba             | 
| test               | 
+--------------------+
7 rows in set (0.11 sec)

mysql> use ejemplo
Database changed
mysql> show tables;
+-------------------+
| Tables_in_ejemplo |
+-------------------+
| clientes          | 
+-------------------+
1 row in set (0.00 sec)

mysql> Describe clientes;
+----------+--------------+------+-----+---------+-------+
| Field    | Type         | Null | Key | Default | Extra |
+----------+--------------+------+-----+---------+-------+
| nombre   | varchar(100) | YES  |     | NULL    |       | 
| telefono | varchar(100) | YES  |     | NULL    |       | 
+----------+--------------+------+-----+---------+-------+
2 rows in set (0.07 sec)

mysql>
No, I am not wrong and neither is Nico.
You are doing something wrong some where.
__________________
Jerry Broughton
Reply With Quote