Posts
All the articles I've posted.
mysql_error_sqlstate
Posted on:December 23, 2019 at 10:10 PM当我们使用jdbc 或者pdo或者其他mysql的驱动的时候,经常看到错误会有两个错误码 举个例子 ``` Error number: 1005; Symbol: ER_CANT_CREATE_TA
clickhouse 编译安装
Posted on:December 19, 2019 at 10:26 AM## 编译流程 - github 拉代码 ``` git clone https://github.com/ClickHouse/ClickHouse.git ``` - 创建子目录 ``` c
java Class_forName
Posted on:December 12, 2019 at 05:32 PM在看到jdbc使用的例子里面,看到了Class.forName("xxx")的相关调用 ``` Class.forName("com.mysql.jdbc.Driver") ``` 这有什么用的?
mysql严格模式
Posted on:December 12, 2019 at 05:06 PM获取sql_mode ``` SELECT @@sql_mode; ```
php pdo 相关参数
Posted on:December 12, 2019 at 05:04 PMthinkphp5 的默认配置会开启`ERRMODE_EXCEPTION` ``` PDO::ATTR_CASE => PDO::CASE_NATURAL,
js-vue基础
Posted on:December 12, 2019 at 02:54 PMtemplate标签只是为了方便 闭包作用域 this作用域 非prop属性作用 component标签 注册变量的等价方式 - vue的scope https://www.cnblog
php-cgi-windows-curl
Posted on:December 11, 2019 at 10:19 AM## 相关阅读 - https://bitbucket.org/cybergene/spawn-php/wiki/Home - https://blog.51cto.com/aarons/15838
协程切换
Posted on:December 9, 2019 at 11:10 PM``` Breakpoint 2, 0x00007fffedb6c090 in swoole::Context::Context(unsigned long, void (*)(void*), voi
namespace与docker
Posted on:December 8, 2019 at 09:36 PM> CLONE_NEWUTS (since Linux 2.6.19) If CLONE_NEWUTS is set, then create the process i
mysql 隐式转换
Posted on:December 5, 2019 at 02:30 PM## 类型系统 `type and program language` 这本书介绍了类型系统. 什么是类型系统呢? ## 为什么会有隐式转换 我写了很久弱类型语言,一直遇到各种隐式转换 但是