How to turn on/off MySQL strict mode in localhost (xampp)?

后端 未结 11 2145
时光说笑
时光说笑 2020-12-04 07:54

I want to know how to check whether MySQL strict mode is on or off in localhost(xampp).

If on then for what modes and how to off.

If off then how to on.

11条回答
  •  我在风中等你
    2020-12-04 08:38

    on Debian 10 I start mysql from ./opt/lampp/xampp start

    I do strace ./opt/lampp/sbin/mysqld and see that my.cnf is there:

    stat("/opt/lampp/etc/my.cnf", {st_mode=S_IFREG|0644, st_size=5050, ...}) = 0
    openat(AT_FDCWD, "/opt/lampp/etc/my.cnf", O_RDONLY|O_CLOEXEC) = 3
    

    hence, I add sql_mode config to /opt/lampp/etc/my.cnf instead of /etc/mysql/my.cnf

提交回复
热议问题