I have came across strange issue with Windows Command Prompt and MySQL. Somehow command prompt does not show wide table correctly. I have simple table:
+-------------------+-------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------------------+-------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| email | char(128) | NO | | NULL | |
| password | char(128) | NO | | NULL | |
| user_salt | varchar(50) | NO | | NULL | |
| is_verified | tinyint(1) | NO | | NULL | |
| is_active | tinyint(1) | NO | | NULL | |
| is_admin | tinyint(1) | NO | | NULL | |
| verification_code | varchar(65) | NO | | NULL | |
+-------------------+-------------+------+-----+---------+----------------+
and after I populate it with data and try to look at it, command prompt returns this nonsense:
mysql> SELECT * FROM users;
+----+---------------------+----------------------------------------------------
------------------------------------------------------------------------------+-
---------------------------------------------------+-------------+-----------+--
--------+-------------------------------------------------------------------+
| id | email | password
|
user_salt | is_verified | is_active | i
s_admin | verification_code |
+----+---------------------+----------------------------------------------------
------------------------------------------------------------------------------+-
---------------------------------------------------+-------------+-----------+--
--------+-------------------------------------------------------------------+
| 1 | gudauskas@gmail.com | 69acc2c656c61eec8a09061cc92cad5c029fb379e601ab74b75
6e48ca53b536b32abd4b103a5191e1d47af1007625dcab053ae03e4adc1f9378ce18614e8f0b5 |
tz5aczjdxa02xc9ai28c9vuhv4vabe1ar5ff127ps6vwwd0svc | 0 | 0 |
0 | c9u40b76u0tflo27550yqmvaa7phcvalxu5vu3wqhz68gkh60qa1teyyua3thp15y |
+----+---------------------+----------------------------------------------------
------------------------------------------------------------------------------+-
---------------------------------------------------+-------------+-----------+--
--------+-------------------------------------------------------------------+
I know that it's some issue with command prompt, because the table is not corrupted and works like a charm. Or maybe it is normal because it's too wide? If so, what are you suggestions regarding some command line apps? What simple command line I could use to look up my tables? Cuz now I have to use phpMyAdmin and It's really really lagging.
Thanks for help in advance ;]