Ruby on Rails - 固定装置使用错误的 utf-8 编码填充 sqlite3 数据库

发布于 2024-11-26 17:10:17 字数 801 浏览 2 评论 0原文

使用 Fixtures 为 sqlite3 数据库播种确实适用于 config1,但使用 config2 utf-8 支持失败。

配置1:Ubuntu 11.04,ruby 1.9.2p136,Rails 3.0.3,“开发”环境

配置2:OS X Lion,ruby 1.9.2p290,Rails 3.0.3,“开发”环境

当有一个像我这样的yml文件时

001: 
  id: 1
  name: "\xC3\xBC"

用它来填充数据库

Fixtures.create_fixtures(...)

在seed.rb中

然后数据库喊出有一个ID为1且名称为“ü”的条目。那是正确的。 这与 config1 一起工作。在 config2 中,我总是有一个名为“μ”的条目。 utf-8编码似乎失败了。

我已经在 Rails 项目中的所有位置打开了 UTF-8:

encoding: utf-8

在 database.yml 中

# encoding: utf-8

、在 seeds.rb 中

Encoding.default_external = "UTF-8"
Encoding.default_internal = "UTF-8"
config.encoding = "utf-8"

、在 config/environments/development.rb 中

Seeding the sqlite3 database with Fixtures did work with config1 but with config2 utf-8 support fails.

config1: Ubuntu 11.04, ruby 1.9.2p136, Rails 3.0.3, "development" environment

config2: OS X Lion, ruby 1.9.2p290, Rails 3.0.3, "development" environment

When having a yml file like

001: 
  id: 1
  name: "\xC3\xBC"

I use it to populate the database with

Fixtures.create_fixtures(...)

in seed.rb

Afterwards the database shout have an entry with id 1 and name "ü". That would be correct.
That worked with config1. With config2 I alway have an entry with name "ü". utf-8 encoding seems to fail.

I already turned on UTF-8 everywhere in the rails project:

encoding: utf-8

in database.yml

# encoding: utf-8

in seeds.rb

Encoding.default_external = "UTF-8"
Encoding.default_internal = "UTF-8"
config.encoding = "utf-8"

in config/environments/development.rb

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一身仙ぐ女味 2024-12-03 17:10:17

这两个系统有可能具有不同的字节序吗?

来自 SQLite3 发行说明:

支持 UTF-8 和 UTF-16

SQLite 3.0 的新 API 包含接受文本作为两者的例程
主机本机字节顺序中的 UTF-8 和 UTF-16。每个
数据库文件将文本管理为 UTF-8、UTF-16BE(大端)或
UTF-16LE(小尾数法)。

您可以在这里查看:
http://en.wikipedia.org/wiki/Endianness#Endianness_and_operating_systems_on_architectures

Is it possible that these two systems have different endianness?

From the SQLite3 release notes:

Support for UTF-8 and UTF-16

The new API for SQLite 3.0 contains routines that accept text as both
UTF-8 and UTF-16 in the native byte order of the host machine. Each
database file manages text as either UTF-8, UTF-16BE (big-endian), or
UTF-16LE (little-endian).

You can check here:
http://en.wikipedia.org/wiki/Endianness#Endianness_and_operating_systems_on_architectures

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文