MySQL Forums
Forum List  »  Install & Repo

Re: how to enable sql_auto_is_null in my.ini?
Posted by: Barry Galbraith
Date: January 24, 2015 08:56PM

sql_auto_is_null is not listed as a command line option, or an option file setting.

see the refman page
http://dev.mysql.com/doc/refman/5.6/en/server-system-variables.html

But it is dynamic, and both local and global in scope, so you can set it by command from a mysql command line client.
http://dev.mysql.com/doc/refman/5.6/en/set-statement.html

Start your server, login as root, and set the global variable. It will stay that way until you restart the server.

Or, when you login to "do stuff," set the session variable and run you commands. The setting will only effect the current session.

Good luck,
Barry.

Options: ReplyQuote


Subject
Written By
Posted
Re: how to enable sql_auto_is_null in my.ini?
January 24, 2015 08:56PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.