
MySQL
请输入昵称膨胀的馒头
你很懒,还没有添加简介
展开
-
Node.js 的 MySQL 操作
function Mysql() { var mysql = require('mysql'); var connection = mysql.createConnection({ // These are attributes host: 'localhost', user: 'root', password: '123456', database: 'tofeed' }) // Method原创 2022-07-06 21:54:59 · 250 阅读 · 0 评论 -
MySQL 操作
数据库、表 create database db_name; 创建数据库 drop database db_name; 删除数据库 show databases; 显示数据库 use db_name; 选择、使用数据库 show tables; 显示数据库表 create table table_name (column_name column_type); 创建数据表 drop table table_name ; 删除数据表 ...原创 2021-04-26 15:21:53 · 110 阅读 · 0 评论 -
MySQL 错误信息 Errors
ERROR 2003 (HY000): Can’t connect to MySQL server on ‘localhost’ (10061) 无法连接到 MySQL 服务 极大的可能是 MySQL 的服务没有启动 Most is Service of MySQL hasn’t started 这时候在命令行使用net start mysql启动服务 Then start the service on command with net start mysql 如果这时启动服务出错 Fail to star原创 2021-04-19 11:09:22 · 217 阅读 · 0 评论