Advertisement
Guest User

Untitled

a guest
Apr 27th, 2016
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. osmc@osmc:~$ mysql -u kodi -pkodipass -h 192.168.10.19
  2. Welcome to the MySQL monitor. Commands end with ; or \g.
  3. Your MySQL connection id is 2870
  4. Server version: 5.7.10 Source distribution
  5.  
  6. Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.
  7.  
  8. Oracle is a registered trademark of Oracle Corporation and/or its
  9. affiliates. Other names may be trademarks of their respective
  10. owners.
  11.  
  12. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  13.  
  14. mysql> show databases;
  15. +--------------------+
  16. | Database |
  17. +--------------------+
  18. | information_schema |
  19. | Main_Music48 |
  20. | Main_Music52 |
  21. | Main_Music56 |
  22. | Main_Video90 |
  23. | Main_Video93 |
  24. | Main_Video99 |
  25. | MyMusic48 |
  26. | MyVideos90 |
  27. | mysql |
  28. | performance_schema |
  29. | sys |
  30. | test |
  31. +--------------------+
  32. 13 rows in set (0.00 sec)
  33.  
  34. mysql> use Main_Video99;
  35. Reading table information for completion of table and column names
  36. You can turn off this feature to get a quicker startup with -A
  37.  
  38. Database changed
  39. mysql> show tables;
  40. +------------------------+
  41. | Tables_in_Main_Video99 |
  42. +------------------------+
  43. | actor |
  44. | actor_link |
  45. | art |
  46. | bookmark |
  47. | country |
  48. | country_link |
  49. | director_link |
  50. | episode |
  51. | episode_view |
  52. | files |
  53. | genre |
  54. | genre_link |
  55. | movie |
  56. | movie_view |
  57. | movielinktvshow |
  58. | musicvideo |
  59. | musicvideo_view |
  60. | path |
  61. | season_view |
  62. | seasons |
  63. | sets |
  64. | settings |
  65. | stacktimes |
  66. | streamdetails |
  67. | studio |
  68. | studio_link |
  69. | tag |
  70. | tag_link |
  71. | tvshow |
  72. | tvshow_view |
  73. | tvshowcounts |
  74. | tvshowlinkpath |
  75. | version |
  76. | writer_link |
  77. +------------------------+
  78. 34 rows in set (0.01 sec)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement