Project

General

Profile

Actions

Bug #22933

closed

Install tool should by default create database with utf8 charset

Added by Michiel Roos almost 14 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Category:
-
Target version:
-
Start date:
2010-06-18
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
4.4
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
Sprint Focus:

Description

The installer creates a database with Latin1 caharacter set as default.

mysql> show create database intro;
--------------------------------------------------------------------------+ | Database | Create Database |
--------------------------------------------------------------------------+ | intro | CREATE DATABASE `intro` /*!40100 DEFAULT CHARACTER SET latin1 */ |
--------------------------------------------------------------------------+
1 row in set (0.01 sec)

This should look like:
mysql> show create database intro;
------------------------------------------------------------------------+ | Database | Create Database |
------------------------------------------------------------------------+ | intro | CREATE DATABASE `intro` /*!40100 DEFAULT CHARACTER SET utf8 */ |
------------------------------------------------------------------------+
1 row in set (0.00 sec)

Which is the result of creating a database using: CREATE DATABASE intro CHARACTER SET utf8 COLLATE utf8_general_ci;

(issue imported from #M14787)


Related issues 2 (0 open2 closed)

Related to TYPO3 Core - Feature #18501: Enable UTF-8 by defaultClosedMichael Stucki2008-03-26

Actions
Has duplicate TYPO3 Core - Bug #16388: Installer should honour forceCharset setting when creating a DBClosedChris topher2006-07-21

Actions
Actions

Also available in: Atom PDF