How can I set client configuration for MySQL Workbench without an installed server? -


say have installed mysql workbench on windows 7 without server, , i'm connecting remote server.
how can set client configuration (like [client] section in 'my.ini') workbench?
or maybe wrong way , client loads configuration server connects to?

update:

maybe wasn't clear enough. configuration i'm trying set command lines run @ beginning of each transaction, such as:

set autocommit=0; set tx_isolation='read-committed'; 

if mysql server installed on machine, can add following lines 'my.ini' file in installation folder:

[client] init-command="set autocommit=0; set tx_isolation='read-committed'" 

mysql workbench doesn't load server configuration file own configuration. can work on such config file server, (server section, [mysqld] only).

mysql workbench's configuration manual step have in order connect server (be local or remote).


Comments