PHP中mysqli_errno和mysqli_error的区别和使用 mysqli_errno() 函数返回最近调用函数的最后一个错误代码。 mysqli_error() 函数返回最近调用函数的最后一个错误描述。 mysqli_errno(connection);mysqli_error(conn ...
分类:
数据库 时间:
2021-01-18 11:31:26
阅读次数:
0
配置顺序如下: 第一步:选择软件上方菜单栏中的Tools Deployment Configuration 找到 connection 点击 + 号 添加远程部署主机输入地址用户名密码 使用 SFTP 配置好点击 ok 第二步:点击Mappings进行上传服务器路径配置 第三步:选择标记项目中要上传 ...
分类:
其他好文 时间:
2021-01-16 11:51:21
阅读次数:
0
MySQL在连接时警告 # 完整报错信息 Fri Jan 15 14:48:07 CST 2021 WARN: Establishing SSL connection without server's identity verification is not recommended. Accordi ...
分类:
数据库 时间:
2021-01-16 11:49:10
阅读次数:
0
Laravel 队列使用 1.修改根目录 .env 文件的 **QUEUE_CONNECTION **字段配置为 database Laravel可配置多种队列驱动,包括 "sync", "database", "beanstalkd", "sqs", "redis", "null"(具体参见app ...
分类:
其他好文 时间:
2021-01-15 11:45:43
阅读次数:
0
一、首先保证redis服务器要开启 二、新建一个控制台进行测试 1、StackExchange.Redis using StackExchange.Redis;using System;using System.Threading; class Program { static Connection ...
分类:
其他好文 时间:
2021-01-14 11:04:31
阅读次数:
0
运行:pip install numpy 出现这个错误: pip._vendor.urllib3.exceptions.ProtocolError: ("Connection broken: ConnectionResetError(10054, '远程主机强迫关 闭了一个现有的连接。', None ...
分类:
其他好文 时间:
2021-01-14 10:49:28
阅读次数:
0
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, i ...
分类:
Web程序 时间:
2021-01-13 11:26:47
阅读次数:
0
在操作pika时请记得安装RabbitMQ 如果没有安装会有 send端 import pikaconnection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))channel = connection.chann ...
分类:
其他好文 时间:
2021-01-13 10:59:28
阅读次数:
0
问题: 使用vscode 用git 拉取代码,提示:在签出前,请清理存储库工作树 解决方法: 1. 手动解决: ①git stash 先将本地修改存储起来 ②git pull 拉取远程 ③git stash pop 还原暂存内容 2. 放弃本地修改,直接覆盖 ①git reset --hard ②g ...
分类:
其他好文 时间:
2021-01-13 10:53:48
阅读次数:
0
问题 在项目中我写了个编译打包的脚本,会拉取gitlab上工程的代码进行编译,然后上传到产品服务器。其中有一次git pull去拉取gitlab上工程代码报错了: ssh_exchange_identification: Connection closed by remote host fatal: ...
分类:
其他好文 时间:
2021-01-13 10:39:28
阅读次数:
0