1、includes()、startsWith()、endsWith()2、repeat()3、模板字符串(template string)1、includes()、startsWith()、endsWith()includes():返回布尔值,表示是否找到了参数字符串。startsWith():返 ...
分类:
其他好文 时间:
2021-04-13 12:20:52
阅读次数:
0
该案例中涉及performance_schema.data_locks表是MySQL8.0中新增的,8.0之前的版本不支持,如果一个事物长时间未提交,我们虽然可以从information_schema.innodb_trx、performance_schema.events_transactions ...
分类:
其他好文 时间:
2021-04-13 12:13:46
阅读次数:
0
数据库安装,待完善 https://www.cnblogs.com/wendy-0901/p/12673705.html https://blog.csdn.net/yougoule/article/details/56680952 数据库启动 service mysql start; 数据库关闭 ...
分类:
数据库 时间:
2021-04-13 11:43:45
阅读次数:
0
GDB 是我们平时调试 c/c++程序的利器, 查起复杂的 bug 问题,比打印大法要好的多,但是也不得不说, gdb 在默认情况下用起来并不是很好用,最近学习到几个高级点的技巧,分享下: 一 美化打印 先上个例子: #include <stdio.h>typedef struct { int i ...
分类:
数据库 时间:
2021-04-12 12:47:30
阅读次数:
0
When you run hexo g on any web instances, like on AWS or Azure, you might get the following error: (node:3568) ExperimentalWarning: The fs.promises AP ...
分类:
其他好文 时间:
2021-04-12 12:28:51
阅读次数:
0
service mysql start 启动MySQL 1、出现报错The server quit without updating PID file... 1.1.可能是/usr/local/mysql/data/rekfan.pid文件没有写的权限 #执行: chown -R mysql:mys ...
分类:
数据库 时间:
2021-04-12 12:16:04
阅读次数:
0
打开vi /etc/selinux/config, 设置 SELINUX=disabled yum grouplist yum groupinstall "GNOME Desktop" "Graphical Administration Tools" 安装epel库 yum -y install e ...
1. pom.xml Maven依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> </dependency> 2. ...
分类:
数据库 时间:
2021-04-10 13:33:58
阅读次数:
0
现象: 执行 lsnrctl start 来启动 listener,却失败了。 $ lsnrctl stat LSNRCTL for Linux: Version 19.0.0.0.0 - Production on 09-APR-2021 23:45:02 Copyright (c) 1991, ...
分类:
数据库 时间:
2021-04-10 13:32:17
阅读次数:
0
<?php session_start(); // $_SESSION['login']=11; echo $_SESSION['login']; ?> <?php // var_dump($_GET); echo '<br/>'; $username=$_GET['username']; $pas ...
分类:
Web程序 时间:
2021-04-10 13:29:04
阅读次数:
0