Guest User

Untitled

a guest
Jun 24th, 2018
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1.  
  2. mysql> use androidHelp;
  3. Database changed
  4. mysql> show tables;
  5. +-----------------------+
  6. | Tables_in_androidHelp |
  7. +-----------------------+
  8. | about |
  9. | adb |
  10. | codes |
  11. | help |
  12. | root |
  13. | version |
  14. +-----------------------+
  15. 6 rows in set (0.00 sec)
  16.  
  17. mysql> show columns in about;
  18. +--------------+------+------+-----+---------+-------+
  19. | Field | Type | Null | Key | Default | Extra |
  20. +--------------+------+------+-----+---------+-------+
  21. | contributors | text | YES | | NULL | |
  22. | comment | text | YES | | NULL | |
  23. +--------------+------+------+-----+---------+-------+
  24. 2 rows in set (0.02 sec)
  25.  
  26. mysql> show columns in adb;
  27. +-------+------+------+-----+---------+-------+
  28. | Field | Type | Null | Key | Default | Extra |
  29. +-------+------+------+-----+---------+-------+
  30. | info | text | YES | | NULL | |
  31. | links | text | YES | | NULL | |
  32. +-------+------+------+-----+---------+-------+
  33. 2 rows in set (0.00 sec)
  34.  
  35. mysql> show columns in codes;
  36. +--------------+------+------+-----+---------+-------+
  37. | Field | Type | Null | Key | Default | Extra |
  38. +--------------+------+------+-----+---------+-------+
  39. | devicename | text | YES | | NULL | |
  40. | code | text | YES | | NULL | |
  41. | comment | text | YES | | NULL | |
  42. | supportlinks | text | YES | | NULL | |
  43. +--------------+------+------+-----+---------+-------+
  44. 4 rows in set (0.04 sec)
  45.  
  46. mysql> show columns in help;
  47. +----------------+------+------+-----+---------+-------+
  48. | Field | Type | Null | Key | Default | Extra |
  49. +----------------+------+------+-----+---------+-------+
  50. | argumentamount | text | YES | | NULL | |
  51. | types | text | YES | | NULL | |
  52. | errormsg | text | YES | | NULL | |
  53. +----------------+------+------+-----+---------+-------+
  54. 3 rows in set (0.00 sec)
  55.  
  56. mysql> show columns in root;
  57. +-------------------+---------+------+-----+---------+-------+
  58. | Field | Type | Null | Key | Default | Extra |
  59. +-------------------+---------+------+-----+---------+-------+
  60. | devicename | text | YES | | NULL | |
  61. | pkglnks | text | YES | | NULL | |
  62. | drvlnks | text | YES | | NULL | |
  63. | adblnk | text | YES | | NULL | |
  64. | problems | text | YES | | NULL | |
  65. | workarounds | text | YES | | NULL | |
  66. | 1clickrootsupport | int(11) | YES | | NULL | |
  67. | superroot | int(11) | YES | | NULL | |
  68. | supportlinks | text | YES | | NULL | |
  69. +-------------------+---------+------+-----+---------+-------+
  70. 9 rows in set (0.01 sec)
  71.  
  72. mysql> show columns in version;
  73. +----------+------+------+-----+---------+-------+
  74. | Field | Type | Null | Key | Default | Extra |
  75. +----------+------+------+-----+---------+-------+
  76. | vernums | text | YES | | NULL | |
  77. | vernames | text | YES | | NULL | |
  78. +----------+------+------+-----+---------+-------+
  79. 2 rows in set (0.01 sec)
Add Comment
Please, Sign In to add comment