当前位置:网站首页>Gql+nodejs+mysql database

Gql+nodejs+mysql database

2022-06-21 08:21:00 kuilaurence

MySQL introduction :
Use GQL Query block data , And then use nodejs Processing data , Write to MySQL database . The database visualizer is Navicat.
pit 1:create_time Automatic generation , Default default fill :CURRENT_TIMESTAMP(4),|| tips: This 4 And timestamp The length of 4 bring into correspondence with ;
 Insert picture description here


database mysql The best version is 5.7 edition ,·· Stable ··


If : Locally installed mysql service , Use localhost Can be connected ,ip The address sender cannot connect ;
Set allow any IP visit , Execute statement :

 mysql> update mysql.user set host = '%' where user = 'root';
 mysql> flush privileges;

Connect test using client tools : Successful connection
Reference blog :
https://www.cnblogs.com/qinaqina/p/11825771.html


Continuous updating …

原网站

版权声明
本文为[kuilaurence]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/172/202206210819215483.html