Node.js & MySQL : 연동 /MySQL로 홈페이지 구현


Node.js & MySQL : 연동 /MySQL로 홈페이지 구현

-- -- Table structure for table `author` -- CREATE TABLE `author` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL, `profile` varchar(200) DEFAULT NULL, PRIMARY KEY (`id`) ); -- -- Dumping data for table `author` -- INSERT INTO `author` VALUES (1,'egoing','developer'); INSERT INTO `author` VALUES (2,'duru','database administrator'); INSERT INTO `author` VALUES (3,'taeho','data..


원문링크 : Node.js & MySQL : 연동 /MySQL로 홈페이지 구현