摘要: 表结构现在有客户表、订单表、图书表、作者表, 客户表Customer (id customer_name)订单表Order (id order_name customer_id book_id)图书表 (id book_name author_id)作者表 (id author_name)怎么来确定 阅读全文
posted @ 2022-08-14 10:47 代码堆里的看客 阅读(582) 评论(0) 推荐(0) 编辑
摘要: 一、PHP7安装Swoole扩展 PHP swoole 扩展下载地址 Github:https://github.com/swoole/swoole-src/tags php官方扩展库:http://pecl.php.net/package/swoole 开源中国:http://git.oschin 阅读全文
posted @ 2022-04-07 14:32 代码堆里的看客 阅读(733) 评论(0) 推荐(0) 编辑
摘要: 出现这个问题:ERR: SQLSTATE[HY000]: General error: 1728 Cannot load from mysql.proc. The table is probably corrupted 执行:mysql_upgrade -u root -p 阅读全文
posted @ 2022-03-11 16:22 代码堆里的看客 阅读(109) 评论(0) 推荐(0) 编辑
摘要: mysql5.7 关于密码问题 报错: ERROR 1862 (HY000): Your password has expired. To log in you must change it using a client that supports expired passwords. 翻译: 错误 阅读全文
posted @ 2022-03-03 16:41 代码堆里的看客 阅读(1169) 评论(0) 推荐(0) 编辑
摘要: 一般这个错误是由密码错误引起,解决的办法自然就是重置密码。 假设a56爆大奖在线娱乐们使用的是root账户。 1.重置密码的第一步就是跳过MySQL的密码认证过程,方法如下: #vim /etc/my.cnf(注:windows下修改的是my.ini) 在文档内搜索mysqld定位到[mysqld]a56爆大奖在线娱乐段:/mysq 阅读全文
posted @ 2022-03-03 16:36 代码堆里的看客 阅读(59) 评论(0) 推荐(0) 编辑
摘要: CREATE TABLE `base_user_service` ( `user_service_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `service_id` int(1 阅读全文
posted @ 2022-02-18 17:46 代码堆里的看客 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 1、vi /etc/yum.repos.d/mongodb-org.repo [mongodb-org-4.0] name=MongoDB Repository baseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/4 阅读全文
posted @ 2022-01-04 17:43 代码堆里的看客 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 1、样例数据 { "_id" : ObjectId("5fa13fb76c3107345a82c047"), "_class" : "java.util.HashMap", "date" : "2020-11-03", "result" : "命中失败", "activityCode" : "TES 阅读全文
posted @ 2021-11-30 23:04 代码堆里的看客 阅读(2339) 评论(0) 推荐(0) 编辑
摘要: var buttons = document.getElementsByClassName("next_button___YGZWZ"); setInterval(function() { var button = buttons[0]; if(typeof(button) != 'undefine 阅读全文
posted @ 2021-10-29 09:11 代码堆里的看客 阅读(848) 评论(0) 推荐(0) 编辑
摘要: upstream nginx_test{ server 192.169.63.101:80; server 192.169.63.102:80; hash $uid; } server{ listen 8080; server_name www.aa.com; if($request_uri ~* 阅读全文
posted @ 2021-09-16 22:33 代码堆里的看客 阅读(77) 评论(0) 推荐(0) 编辑