公司项目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
解决方法: 1.检查磁盘所在空间是否够用。 2.磁盘修复下 参考:https://www.cnblogs.com/ylldbk/p/5556420.html ...
分类:
数据库 时间:
2021-06-28 20:34:59
阅读次数:
0
01 背景 面对大量用户访问、高并发请求,单机网站可以从软硬件两个方面寻求解决方法: 1、硬件方面:可以使用高性能的服务器、大型数据库,存储设备,高性能Web服务器; 2、软件方面:采用高效率的编程语言(比如Go,Erlang,Scala)等。 但是,当单机容量达到极限时,我们需要考虑业务拆分和分布 ...
分类:
编程语言 时间:
2021-06-28 20:23:37
阅读次数:
0
技术概述 什么情况会使用到这个技术 axios 在 React 项目中的请求拦截方案以及接口统一和模拟。 学习该技术的原因 使项目更加高内聚低耦合,更加便于后续的管理。 技术的难点在哪里 需要较多的 React 项目实践才能总结出来。 技术详述 流程图 过程 在 src 文件夹下创建 service ...
分类:
其他好文 时间:
2021-06-28 19:55:13
阅读次数:
0
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 【模板】差分约束算法 差分约束模板题。 #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 [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
<?xml version="1.0" encoding="UTF-8"?><configuration> <system.webServer> <rewrite> <rules> <rule name="Imported Rule 1"> <match url="^index.html" /> < ...
分类:
Web程序 时间:
2021-06-28 19:43:32
阅读次数:
0
FileReader读取文件 查看文件的相对路径 示例一:查看文件的相对路径 package com.dreamcold.io; import java.io.File; public class Demo01 { public static void main(String[] args) { F ...
分类:
编程语言 时间:
2021-06-28 19:39:13
阅读次数:
0
本文主要介绍MySQL升级8.0之后报错问题解决方法(java.sql.SQLException: Unable to load authentication plugin 'caching_sha2_password'.)。 原文地址:Java MySQL升级mysql8.0.11及之后版本使用' ...
分类:
数据库 时间:
2021-06-28 19:36:19
阅读次数:
0