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 · 220 阅读 · 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 · 89 阅读 · 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 · 193 阅读 · 0 评论