Skip to content

Instantly share code, notes, and snippets.

View gdemir's full-sized avatar

gdemir gdemir

View GitHub Profile
@gdemir
gdemir / create-db.sql
Created March 6, 2011 19:35
create-db
create database DATABASE_NAME;
grant all privileges on DATABASE_NAME.* to 'USER_NAME'@'localhost' identified by "PASSWORD";
@roktas
roktas / my.cnf
Created December 13, 2010 23:13
[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