拥有MySQL标签的文章

MySQL 1390 Prepared statement contains too many placeholders 问题分析

之前在做tp框架批量插入测试的时候有出现过一个报错,1390 Prepared statement contains too many placeholders字面意思就是预处理状态包含了太多占位符我们来看一下框架源码```php/ 执行语句 @access public @param string $s...
 阅读数  10365
阅读全文

MySQL server has gone away报错原因分析

之前在测试thinkPHP框架各种插入数据方式的遇到了 MySQL server has gone away 的错误,如图:代码如下:```php<?phpnamespace app\index\controller;use think\Db;class Index{ public function test2() { ...
 阅读数  9988
阅读全文

PHP利用mysqldump备份MySQL数据库脚本

之前有一个需求是要在开发环境写一个手动备份数据库的脚本,所以就有了这个东西主要为两个文件,一个脚本文件,一个配置文件脚本文件内容如下:```php<?phpdate_default_timezone_set('PRC');$config = require __DIR__."/conf.php";/ 数据库备份 /$backup_path = __...
 阅读数  3864
阅读全文