Hi,
After connectig to a database i whant to check if a database is already created and with a specific structure.
As an example:mysql> describe Teste;
Qt Code:
  1. +---------+---------+------+-----+---------+-------+
  2. | Field | Type | Null | Key | Default | Extra |
  3. +---------+---------+------+-----+---------+-------+
  4. | field01 | int(11) | NO | PRI | NULL | |
  5. | field02 | int(11) | YES | | NULL | |
  6. +---------+---------+------+-----+---------+-------+
To copy to clipboard, switch view to plain text mode 

What sort of query showld i use?

Thanks