一. Remote Desktop Organizer远程连接时报错 解决方法: 二. Remote Desktop Connection Manager远程电脑没有全屏,右边和下边有滚动条 解决方法: ...
连接使用MySql 安装MySql模块: npm install mysql 创建连接: 用 createConnection 创建 Mysql 连接,每执行一次 connection.query 都是一个全新的连接,会造成一个资源的极大浪费,降低性能。 连接池是另外的一种执行方法,它一次性的创建了 ...
分类:
数据库 时间:
2019-10-10 11:05:26
阅读次数:
109
Mysql报警告:WARN: Establishing SSL connection 警告信息 Tue Oct 08 12:33:26 CST 2019 WARN: Establishing SSL connection without server's identity verification ...
分类:
数据库 时间:
2019-10-08 14:40:23
阅读次数:
232
<?php /*1.Connection*/ $redis = new Redis(); $redis->connect('127.0.0.1',6379,1);//短链接,本地host,端口为6379,超过1秒放弃链接 $redis->open('127.0.0.1',6379,1);//短链接( ...
分类:
Web程序 时间:
2019-10-08 12:16:40
阅读次数:
104
1. 乱码的本质原因就是客户端与服务端的字符集不一致导致 2. 解决乱码问题的方案:修改字符集设置保证服务端正确理解客户端的字符集 character_set_client:服务端接收客户端数据 character_set_connection:服务端内部连接使用 character_set_res ...
分类:
数据库 时间:
2019-10-07 21:14:54
阅读次数:
92
Handling Errors: If the client or server crashes, the connection will be lost. Backdoor crashes if: An incorrect command is sent. The correct command ...
分类:
编程语言 时间:
2019-10-07 13:35:48
阅读次数:
114
A Connection and Disconnection Description 将一个由小写字母构成字符串 $S$ 复制 $k$ 遍得到 $T$,可以将 $T$ 中的字母更换为任意一个字母,求至少在 $T$ 中更换几个字母才能没有两个相邻的相同的字母。 Solution 对于字符串 $T$,它 ...
分类:
其他好文 时间:
2019-10-06 09:40:04
阅读次数:
77
如果在 Android Studio 中设置了代理,而在电脑中使用 SS 设置了全局代理,之后 SS 代理不可用时,使用 Android Studio 时会报如下错误: Connect to 127.0.0.1:1086 [/127.0.0.1] failed: Connection refused ...
分类:
移动开发 时间:
2019-10-06 00:29:20
阅读次数:
418
http://darwinpedia.blogspot.com/2017/09/ubuntu-server-1604-connection-via-usb.html Android USB tethering enable/disable:Settings menu->Wireless and Ne ...
分类:
移动开发 时间:
2019-10-05 22:06:38
阅读次数:
98
一、HTTP 连接的常见流程 二、从 TCP 编程上看 HTTP 请求处理 三、短连接与长连接 四、Connection 仅针对当前连接有效 五、代理服务器对长连接的支持 未设置代理服务器 设置代理 继续访问 ...
分类:
Web程序 时间:
2019-10-05 14:52:20
阅读次数:
259