mysql的root账户,我在连接时通常用的是localhost或127.0.0.1,公司的测试服务器上的mysql也是localhost所以我想访问无法访问,测试暂停.解决方法如下:1,修改表,登录mysql数据库,切换到mysql数据库,使用sql语句查看"select host,user fr ...
分类:
数据库 时间:
2019-08-22 01:22:30
阅读次数:
159
1、复杂SQL查询 1.1、单表查询 (1)选择指定的列 [例]查询全体学生的学号和姓名 select Sno as 学号,Sname as 姓名 from student; select Sno as 学号,Sname as 姓名 from student; select Sno,Sname fr ...
分类:
数据库 时间:
2019-08-21 09:59:58
阅读次数:
163
```js import Vue from 'vue' import VueRouter from 'vue-router' import login from '../pages/login/index' import Main from '../pages' import Register fr... ...
分类:
Web程序 时间:
2019-08-18 23:51:09
阅读次数:
158
临界段,用一句话概括就是一段在执行时不能被中断的代码段。 临界段被打断的情况,一个是系统调度,还有一个就是外部中断。 对临界段的保护就是对中断的开和关。 空闲任务与阻塞延时 xTicksToDelay是任务控制块的一个成员,用于记录任务需要延时的时间,单位为SysTick的中断周期。 多优先级 Fr ...
分类:
其他好文 时间:
2019-08-16 20:29:43
阅读次数:
78
Matplotlib https://github.com/rougier/matplotlib-tutorial Numpy: https://www.labri.fr/perso/nrougier/from-python-to-numpy/ https://github.com/rougier/ ...
分类:
Web程序 时间:
2019-08-15 13:17:57
阅读次数:
112
<iomanip>传送门:https://baike.baidu.com/item/iomanip/3319954?fr=aladdin linux为何用./运行程序:https://blog.csdn.net/lijinshanba/article/details/81985961 ...
分类:
编程语言 时间:
2019-08-13 20:27:52
阅读次数:
84
来源于百度百科:https://baike.baidu.com/item/%E7%81%B0%E9%98%B6/1672830?fr=aladdin 一般性定义 所谓灰阶,是将最亮与最暗之间的亮度变化,区分为若干份。以便于进行信号输入相对应的屏幕亮度管控。每张数字影像都是由许多点所组合而成的,这些点 ...
分类:
其他好文 时间:
2019-08-10 09:29:32
阅读次数:
152
# websocket from geventwebsocket.server import WSGIServer # 我要WSGI为我提供服务 from geventwebsocket.handler import WebSocketHandler # WSGI 遇到WS协议的时候,处理方式 fr ...
分类:
Web程序 时间:
2019-08-09 01:05:35
阅读次数:
138
一、先从百度百科定义开始。https://baike.baidu.com/item/WebRTC/5522744?fr=aladdin 1、WebRTC: 名称源自网页即时通信(英语:Web Real-Time Communication)的缩写,是一个支持网页浏览器进行实时语音对话或视频对话的AP ...
分类:
Web程序 时间:
2019-08-08 13:30:37
阅读次数:
154
题目如下: Given two strings text1 and text2, return the length of their longest common subsequence. A subsequence of a string is a new string generated fr ...
分类:
其他好文 时间:
2019-08-06 14:01:01
阅读次数:
81