Advertisement
Guest User

Untitled

a guest
May 14th, 2017
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.13 KB | None | 0 0
  1. $ mysql -p --user=root
  2. Enter password:
  3. Welcome to the MySQL monitor.  Commands end with ; or \g.
  4. Your MySQL connection id is 2442
  5. Server version: 5.0.51a-24+lenny3 (Debian)
  6.  
  7. Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
  8.  
  9. mysql> use somebody;
  10. Reading table information for completion of table and column names
  11. You can turn off this feature to get a quicker startup with -A
  12.  
  13. Database changed
  14. mysql> show tables;
  15. +--------------------+
  16. | Tables_in_somebody |
  17. +--------------------+
  18. | auth               |
  19. | shortcuts          |
  20. | thankyou           |
  21. | users              |
  22. +--------------------+
  23. 4 rows in set (0.00 sec)
  24.  
  25. mysql> use asmadeus;
  26. Reading table information for completion of table and column names
  27. You can turn off this feature to get a quicker startup with -A
  28.  
  29. Database changed
  30. mysql> show tables;
  31. ERROR 2013 (HY000): Lost connection to MySQL server during query
  32. mysql> show tables;
  33. ERROR 2006 (HY000): MySQL server has gone away
  34. No connection. Trying to reconnect...
  35. Connection id:    2443
  36. Current database: asmadeus
  37.  
  38. ERROR 2013 (HY000): Lost connection to MySQL server during query
  39. mysql>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement