Here is the mysql stuff; david [06:25 PM] opteron ~ $ mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 151 Server version: 5.0.60-log Gentoo Linux mysql-5.0.60-r1
Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> USE daboconsult; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> DESCRIBE clients; +------------+------------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------+------------------+------+-----+---------+----------------+ | pkid | int(10) unsigned | NO | PRI | NULL | auto_increment | | clientname | varchar(80) | NO | MUL | NULL | | | rate | int(10) unsigned | NO | | NULL | | | attn | varchar(60) | NO | | NULL | | | street1 | varchar(80) | NO | | NULL | | | street2 | varchar(80) | NO | | NULL | | | city | varchar(60) | NO | | NULL | | | stateprov | char(2) | NO | | NULL | | | postalcode | varchar(10) | NO | | NULL | | +------------+------------------+------+-----+---------+----------------+ 9 rows in set (0.00 sec) mysql> SELECT * from clients; Empty set (0.00 sec) _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]
