码迷,mamicode.com
首页 >  
搜索关键字:mysql 语句优化 using    ( 146086个结果
C#调用MySQL几个错误的解决方法
公司项目C#操作mysql数据库时出现几个问题的解决方案作下记录 1、The MySQL server is running with the --secure-file-priv option so it cannot execute this statement” 解决方法:修改my.ini 配 ...
分类:数据库   时间:2021-06-28 20:37:38    阅读次数:0
xshell搭建连接centos linux 并建立连接、安装
xshell搭建linux 远程连接方法参考:xshell连接VMware CentOS7 xshell连接linux后安装mysql:linux centos7 安装mysql 修改mysql 初始登录密码: 1.首先使用命令: vim /etc/my.cnf 修改mysql 配置信息 在[mys ...
分类:系统相关   时间:2021-06-28 20:26:01    阅读次数:0
【C++ Primer 第16章】重载与模板
编写重载模板 1 #include <iostream> 2 #include <sstream> 3 #include <string> 4 using namespace std; 5 6 template <typename T> 7 string debug_rep(const T &t) ...
分类:编程语言   时间:2021-06-28 20:25:45    阅读次数:0
OSError: mysql_config not found
解决python 安装 第三方包时报OSError: mysql_config not found的错误 Ubuntu sudo apt-get install libmysqlclient-dev centos7 yum install mysql-devel gcc gcc-devel pyth ...
分类:数据库   时间:2021-06-28 20:20:31    阅读次数:0
纳米猫猫(欧拉函数)
#include <bits/stdc++.h> using namespace std; using ll = long long ; ll euler(ll n){ ll k=n; for(ll i=2;i*i<=n;i++) if(n%i==0){ k-=k/i; while(n%i==0)n ...
分类:其他好文   时间:2021-06-28 20:14:20    阅读次数:0
MySql密码过期
title: MySql密码过期 date: 2018/03/24 22:12:55 tags: [MySql] categories: 开发 数据库 很就没有连接本地的mysql了,今天连接的时候发现本机的mysql链接不上了,在cmd中执行动作的时候也会叫你去set password,做设置密码 ...
分类:数据库   时间:2021-06-28 20:09:12    阅读次数:0
xshell连接虚拟机
1.查看IP地址,可以用ifconfig或者ifconfig | grep 192 2.查看端口netstat -tpln或者netstat -tunlp 3.8083是Tomcat端口,3306是MySQL数据库端口 4.Jmeter永久选择中文,在jmeter的bin目录中,打开jmeter.p ...
分类:系统相关   时间:2021-06-28 19:54:39    阅读次数:0
做题记录 Luogu P3371
Luogu P3371 【模板】单源最短路径(弱化版) 练习一下那个死了的算法(最近好多东西要用到啊:分数规划、差分约束...) #include<bits/stdc++.h> using namespace std; #define N 1000005 int first[N], Next[N], ...
分类:其他好文   时间:2021-06-28 19:54:03    阅读次数:0
做题记录 Luogu P5960
Luogu P5960 【模板】差分约束算法 差分约束模板题。 #include<bits/stdc++.h> using namespace std; #define N 1000005 int first[N], Next[N], to[N], w[N], tot; int dis[N], vi ...
分类:其他好文   时间:2021-06-28 19:53:48    阅读次数:0
做题记录 Luogu P4926
Luogu P4926 [1007]倍杀测量者 取对数化除为减。 或者用乘积最短路。 注意图不一定连通。 #include<bits/stdc++.h> using namespace std; #define N 1000005 const double eps = 1e-12; struct g ...
分类:其他好文   时间:2021-06-28 19:51:46    阅读次数:0
146086条   上一页 1 ... 8 9 10 11 12 ... 14609 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!