MySQL是一個(gè)廣泛使用的開源關(guān)系型數(shù)據(jù)庫管理系統(tǒng)。在使用MySQL時(shí),my.ini文件是必需的。對于MySQL5.5版本,my.ini文件可以在官方網(wǎng)站上下載。
[client] port=3306 default-character-set=utf8 [mysql] default-character-set=utf8 [mysqld] port=3306 basedir=D:\\Program Files\\MySQL\\MySQL Server 5.5\\ datadir=D:\\Program Files\\MySQL\\MySQL Server 5.5\\data character-set-server=utf8 default-storage-engine=INNODB sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION" max_connections=100 query_cache_size=32M table_cache=256 tmp_table_size=35M thread_cache_size=8 myisam_max_sort_file_size=100G myisam_sort_buffer_size=69M key_buffer_size=53M read_buffer_size=64K read_rnd_buffer_size=256K sort_buffer_size=256K innodb_additional_mem_pool_size=2M innodb_flush_log_at_trx_commit=1 innodb_log_buffer_size=1M innodb_buffer_pool_size=685M innodb_log_file_size=48M innodb_thread_concurrency=8
在my.ini文件中,需要注意一些配置項(xiàng),例如,在[client]
下設(shè)置了端口、默認(rèn)字符集等;在[mysql]
下設(shè)置了默認(rèn)字符集;在[mysqld]
下設(shè)置了端口、基礎(chǔ)目錄、數(shù)據(jù)目錄、字符集、默認(rèn)存儲引擎、sql模式、最大連接數(shù)、查詢緩存大小、表緩存大小、臨時(shí)表大小、線程緩存大小等。
通過下載MySQL5.5 my.ini文件并在填寫必要的配置項(xiàng)后,即可在MySQL中進(jìn)行數(shù)據(jù)庫管理,使整個(gè)操作更加便捷。