安装 MySQL 时区支持 (MAMP PRO 3.0.7.3)

Install MySQL Timezone Support (MAMP PRO 3.0.7.3)

我正在尝试弄清楚如何填写 MySQL 中的时区表。我刚开始在 Mac 上进行开发。这是我第一次尝试设置它,我发现很难找到说明。我见过 posts,他们说 mysql_tzinfo_to_sql 文件应该位于此处 /usr/share/lib/zoneinfo,因为它应该与 Macs 一起提供。好吧,我的没有。我有一个全新的 MacBook Pro。 Spotlight 说该文件位于 applications/MAMP/Library/bin 所以我打开终端,转到那个目录并在...

中输入
Gordons-MacBook-Pro:bin gordonfrobenius$ ./mysql_tzinfo_to_sql | ./mysql -p -u root mysql
Usage:
 ./mysql_tzinfo_to_sql timezonedir
 ./mysql_tzinfo_to_sql timezonefile timezonename
 ./mysql_tzinfo_to_sql --leap timezonefile
Enter password:

我输入了密码,但没有任何反应。时区表仍然是空的。请帮忙。

更新: 我只是按照其他 post 的建议尝试了 运行 这个方法,进行了更进一步但还不够深入,试图弄清楚是什么这个错误意味着现在...

Gordons-MacBook-Pro:bin gordonfrobenius$ ./mysql_tzinfo_to_sql /usr/share/zoneinfo | ./mysql -p -u root mysql
Enter password: Warning: Unable to load '/usr/share/zoneinfo/+VERSION' as time zone. Skipping it.

现在post,可能是在正确的道路上...http://www.larryullman.com/forums/index.php?/topic/2629-ch-6-pg-190-step-by-step-instructions-for-how-to-load-time-zone-table-info/

这些说明解决了问题:http://www.larryullman.com/forums/index.php?/topic/2629-ch-6-pg-190-step-by-step-instructions-for-how-to-load-time-zone-table-info/

我发现通过导航到终端中的那个位置,然后输入 open .,可以更容易地将 +VERSION 文件移出 usr/share/zoneinfo。这会导致查找器在该位置打开,然后您可以将其拖到桌面(您必须进行身份验证)。然后在完成加载时区数据后将其拖回。