Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2021
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. <-- HandshakeInitializationPacket {
  2. protocolVersion: 10,
  3. serverVersion: '8.0.25',
  4. threadId: 52,
  5. scrambleBuff1: <Buffer 67 5e 45 2e 19 3d 0a 60>,
  6. filler1: <Buffer 00>,
  7. serverCapabilities1: 65535,
  8. serverLanguage: 255,
  9. serverStatus: 2,
  10. serverCapabilities2: 53247,
  11. scrambleLength: 21,
  12. filler2: <Buffer 00 00 00 00 00 00 00 00 00 00>,
  13. scrambleBuff2: <Buffer 33 5b 5a 26 0a 2e 4c 21 16 26 73 18>,
  14. filler3: <Buffer 00>,
  15. pluginData: 'caching_sha2_password',
  16. protocol41: true
  17. }
  18.  
  19. --> (52) ClientAuthenticationPacket {
  20. clientFlags: 455631,
  21. maxPacketSize: 0,
  22. charsetNumber: 33,
  23. filler: undefined,
  24. user: 'root',
  25. scrambleBuff: <Buffer 8a 16 61 22 e9 cb 45 f0 65 0e 9c c0 d1 f7 cf 2d 95 f9 81 3d>,
  26. database: 'todoApp',
  27. protocol41: true
  28. }
  29.  
  30. <-- (52) OkPacket {
  31. fieldCount: 0,
  32. affectedRows: 0,
  33. insertId: 0,
  34. serverStatus: 2,
  35. warningCount: 0,
  36. message: '',
  37. protocol41: true,
  38. changedRows: 0
  39. }
  40.  
  41. --> (52) ComQueryPacket { command: 3, sql: 'SELECT * FROM categories' }
  42.  
  43. ^C
  44. emilychiu@Emilys-MacBook todo-app-backend % node db.js
  45. <-- HandshakeInitializationPacket {
  46. protocolVersion: 10,
  47. serverVersion: '8.0.25',
  48. threadId: 53,
  49. scrambleBuff1: <Buffer 35 02 35 10 54 60 3f 16>,
  50. filler1: <Buffer 00>,
  51. serverCapabilities1: 65535,
  52. serverLanguage: 255,
  53. serverStatus: 2,
  54. serverCapabilities2: 53247,
  55. scrambleLength: 21,
  56. filler2: <Buffer 00 00 00 00 00 00 00 00 00 00>,
  57. scrambleBuff2: <Buffer 6c 36 13 7e 32 19 4c 47 32 63 15 7a>,
  58. filler3: <Buffer 00>,
  59. pluginData: 'caching_sha2_password',
  60. protocol41: true
  61. }
  62.  
  63. --> (53) ClientAuthenticationPacket {
  64. clientFlags: 455631,
  65. maxPacketSize: 0,
  66. charsetNumber: 33,
  67. filler: undefined,
  68. user: 'root',
  69. scrambleBuff: <Buffer 0e 74 de 4b 64 8c ff 2b cb 07 30 4a a4 05 2a cd 97 6b 67 bd>,
  70. database: 'todoApp',
  71. protocol41: true
  72. }
  73.  
  74. <-- (53) OkPacket {
  75. fieldCount: 0,
  76. affectedRows: 0,
  77. insertId: 0,
  78. serverStatus: 2,
  79. warningCount: 0,
  80. message: '',
  81. protocol41: true,
  82. changedRows: 0
  83. }
  84.  
  85. --> (53) ComQueryPacket { command: 3, sql: 'SELECT * FROM categories' }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement