码迷,mamicode.com
首页 >  
搜索关键字:show all    ( 41857个结果
JDBC连接MySQL帐号密码输错的小坑
现象 通过JDBC连接MySQL提示 分析 先检查权限问题 grant all privileges on *.* to 'root'@'%' with grant option; 可能你的密码错了 这个容易被忽略! ...
分类:数据库   时间:2021-04-30 12:01:05    阅读次数:0
ciyunzuoye
from wordcloud import WordCloudfrom scipy.misc import imreadimport matplotlib.pyplot as pltimport jieba def read_deal_text(): with open("ciyun.txt","r ...
分类:其他好文   时间:2021-04-29 12:18:48    阅读次数:0
MySQL--存储引擎
1. 存储引擎 1.1 存储引擎相关的命令 查看MySQL提供的所有存储引擎 show engines; MySQL当前默认的存储引擎是InnoDB 在5.7版本所有的存储引擎中只有InnoDB支持事务。 查看MySQL当前默认的存储引擎 show variables like `%storage_ ...
分类:数据库   时间:2021-04-29 11:38:16    阅读次数:0
二次封装上传element
<!-- Vue SFC --> <template> <div> <el-upload class="upload-demo" action="" v-if="show" :on-preview="handlePreview" :on-remove="handleRemove" :before-u ...
分类:Web程序   时间:2021-04-28 12:07:33    阅读次数:0
mysql 主从复制遇到的坑
1 Could not execute Write_rows event on table cs3.test01; Duplicate entry ‘7‘ for key ‘test01.PRIMARY‘ 1.1 主库操作 SHOW BINARY LOGS; PURGE BINARY LOGS TO ...
分类:数据库   时间:2021-04-27 14:28:23    阅读次数:0
springcloud<seata注册与配置到ncaos>
首先介绍下seata的坑: is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying) No Feign Client for loadBa ...
分类:编程语言   时间:2021-04-26 13:01:17    阅读次数:0
Linux数据库
1:数据库命令: 显示所有表/数据库:SHOW TABLES /DATABASES; 登录进入数据库:mysql -u root -p 进入数据库 查看所有数据库:show databases; 创建数据库:create database 数据库名; 删除数据库:drop database 数据库名 ...
分类:数据库   时间:2021-04-24 13:56:30    阅读次数:0
简单的线性规划问题的求解
%% max z=2x1+3x2-5x3 %% s.t. x1+x2+x3=7 %% x1+3x2+x3<=12 %% x1,x2,x3>=0 clear all; close all; f=[-2;-3;5]; a=[-2,5,-1;1,3,1];b=[10;12]; aeq=[1,1,1];be ...
分类:其他好文   时间:2021-04-24 11:47:33    阅读次数:0
HDU6570 Wave(DP)
Avin is studying series. A series is called "wave" if the following conditions are satisfied: It contains at least two elements; All elements at odd p ...
分类:其他好文   时间:2021-04-23 12:27:42    阅读次数:0
对数据库的操作
# 查看所有的数据库SHOW DATABASES; # 选择某一个数据库USE bili; # 查看当前正在使用的数据库SELECT DATABASE(); # 创建一个新的数据库-- CREATE DATABASE douyu;-- CREATE DATABASE IF NOT EXISTS do ...
分类:数据库   时间:2021-04-22 16:33:38    阅读次数:0
41857条   上一页 1 ... 16 17 18 19 20 ... 4186 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!