エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
UTF8 Encoded SQL Scripts in initdb · Issue #131 · docker-library/mysql
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
UTF8 Encoded SQL Scripts in initdb · Issue #131 · docker-library/mysql
I recently completed a project that populated the database with UTF8 encoded text. My script was ... I recently completed a project that populated the database with UTF8 encoded text. My script was able to create the database using the correct character-set, but the text data could not be properly imported. Apparently, the initdb scripts are assumed to be ascii encoded, so I had to make a minor modification to docker-entrypoint.sh. mysql=( mysql --protocol=socket --default_character_set=utf8 -uro

