"ヾ(◍°∇°◍)ノ゙加油哟~","愿我们不负昭华,以梦为马!","愿我们历尽千帆,归来仍是少年!"
上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: #命令查看最大连接数。 show variables like "max_connections" #命令修改最大连接数 set GLOBAL max_connections=1000; #查看具体的连接数信息。 show processlist #关闭一个非交互连接前要等待的秒数 show glo 阅读全文
posted @ 2022-03-18 17:50 深夜独行侠 阅读(462) 评论(0) 推荐(0) 编辑
摘要: 进入mysql数据库,修改数据库的内容 1, use mysql; 2,update user set authentication_string="" where User='root';//设 authentication_string 为空值 ,因为是连接这个加密的东西 先设密码为空 3,up 阅读全文
posted @ 2022-03-18 17:31 深夜独行侠 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 数据库内置表 https://www.cnblogs.com/gengyufei/p/13376184.html 阅读全文
posted @ 2022-03-18 17:11 深夜独行侠 阅读(24) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/tangsong41/p/14441845.html 阅读全文
posted @ 2022-03-18 15:16 深夜独行侠 阅读(14) 评论(0) 推荐(0) 编辑
摘要: fatal: unable to access 'https://github.com/torchstar/hellogit.git/': OpenSSL SSL_read: Connection was reset, errno 10054 git config --global http.ssl 阅读全文
posted @ 2022-03-09 11:57 深夜独行侠 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 用户名: 随意填写 秘钥: ccbfc13e-c31d-42ce-8939-3c7e63ed5417a56ea5da-f30b-4fb1-8a05-95f346a9b20ba0fe8645-3916-45d4-9976-cb6b88fecc6c b70d7f66-dac2-4462-bf51-c4e 阅读全文
posted @ 2022-03-08 10:39 深夜独行侠 阅读(1291) 评论(1) 推荐(0) 编辑
摘要: public static void main(String[] args) { Calendar c=Calendar.getInstance(); SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd"); //今天 String toda 阅读全文
posted @ 2022-03-01 14:31 深夜独行侠 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 添加阿里云镜像源 # yum install yum-utils -y # yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 阅读全文
posted @ 2022-02-28 20:36 深夜独行侠 阅读(287) 评论(0) 推荐(0) 编辑
摘要: ==导出一个完整数据库[结构+数据] exp system/password file=/u01/20101115.dmp log=/u01/20101115.log full=y==只导出数据库的结构而不导出里面的数据 exp system/password file=/u01/20101115. 阅读全文
posted @ 2022-02-25 21:00 深夜独行侠 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 在开发中,一般在sqlmap中都会判断参数是否为null,以及是否为空字符串 当参数为Int类型 0时,myBatis自动把0定义为空字符串“” 因此我们在可能入参为0的地方多加一个判断: 阅读全文
posted @ 2022-02-14 14:45 深夜独行侠 阅读(218) 评论(0) 推荐(0) 编辑
摘要: SELECT * FROM (SELECT a.*, ROWNUM rn FROM (SELECT * FROM zs_family) a WHERE ROWNUM <= 44) WHERE rn BETWEEN 13 AND 44; 阅读全文
posted @ 2022-02-14 09:25 深夜独行侠 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 1、最终用户名比较 SimpleAccountRealm 中的 doGetAuthenticationInfo 在这个方法中完成 2、最终密码校验 AuthenticatingRealm 中的 assertCredentialsMatch 总结 AuthenticatingRealm 认证realm 阅读全文
posted @ 2022-02-13 09:24 深夜独行侠 阅读(38) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/qujingtongxiao/p/13041623.html 阅读全文
posted @ 2022-02-10 09:59 深夜独行侠 阅读(63) 评论(0) 推荐(0) 编辑
摘要: DATEDIFF() 用法: DATEDIFF(时间1,时间2) SELECT DATEDIFF(时间1,时间2) AS date_diff FROM courses; DATEDIFF() 差值计算规则:时间 1 - 时间 2 date_diff 为返回结果列名称 类型: YEAR、MONTH、W 阅读全文
posted @ 2022-02-04 19:12 深夜独行侠 阅读(431) 评论(0) 推荐(1) 编辑
摘要: https://www.jb51.net/article/77858.htm 阅读全文
posted @ 2022-02-04 17:54 深夜独行侠 阅读(26) 评论(0) 推荐(0) 编辑
摘要: NOW() 可以用来返回当前日期和时间 格式:YYYY-MM-DD hh:mm:ss CURDATE() 可以用来返回当前日期 格式:YYYY-MM-DD CURTIME() 可以用来返回当前时间 格式:hh:mm:ss 在使用 NOW() 和 CURTIME() 时,如果要精确的秒以后的时间的话, 阅读全文
posted @ 2022-01-22 15:37 深夜独行侠 阅读(378) 评论(0) 推荐(0) 编辑
摘要: https://www.weixiuzhan.cn/news/show-27039.html 阅读全文
posted @ 2021-12-29 09:31 深夜独行侠 阅读(509) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-12-26 20:48 深夜独行侠 阅读(22) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/lgx5/p/10732016.html 阅读全文
posted @ 2021-12-22 14:24 深夜独行侠 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 14章大纲 计算摄影学的基础概念、主要研究领域、未来的展望 总结传统摄影学与数字摄影学的一些基础知识 讲述颜色和颜色空间 概述数字感应器件的基础知识 概述自动聚焦技术 介绍了自动曝光和自动白平衡技术(5、6章共同构成了摄像机的基础性技术 3A技术) 介绍了高动态范围成像技术 总述了全景成像相关概论与 阅读全文
posted @ 2021-12-19 23:10 深夜独行侠 阅读(646) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页