This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create database DATABASE_NAME; | |
grant all privileges on DATABASE_NAME.* to 'USER_NAME'@'localhost' identified by "PASSWORD"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[mysqld] | |
# ---------------------------------------------------------------------- | |
# UTF-8 temiz bir mysql için ilgili yapılandırma | |
# ---------------------------------------------------------------------- | |
init_connect=’SET collation_connection = utf8_general_ci’ | |
init_connect=’SET NAMES utf8′ | |
default-character-set=utf8 | |
character-set-server=utf8 |