Ruby、Rhomobile、JqueryMobile 和单引号

发布于 2024-11-30 14:49:07 字数 678 浏览 0 评论 0原文

在 ruby​​ 上的 rhomobile 中,我解析文件并将其保存到 sqlite db 中,

Questions.delete_all()
file_name = File.join(Rho::RhoApplication::get_model_path('app','Settings'), 'questions.txt')
  file = File.new(file_name)

  file.each_line("\n") do |row|
    col = row.split("|")

   @question=Questions.create(
      {"id" => col[0], "question" => col[1],"answered"=>'0',"show"=>'1',"tutorial"=>col[4]}
    )


    break if file.lineno > 1500
  end
file.close

当字符串中的文本中有单引号 ' 时,例如一个表达式,

It's  funny  

然后在解析、保存和填充之后,我知道

It�s  funny

如何解决这个问题,它来自哪里,来自 Ruby,来自 sqlite 还是来自什么?怎么解决呢?

In rhomobile, which is on ruby I have a parsing of file and saving to sqlite db such a code

Questions.delete_all()
file_name = File.join(Rho::RhoApplication::get_model_path('app','Settings'), 'questions.txt')
  file = File.new(file_name)

  file.each_line("\n") do |row|
    col = row.split("|")

   @question=Questions.create(
      {"id" => col[0], "question" => col[1],"answered"=>'0',"show"=>'1',"tutorial"=>col[4]}
    )


    break if file.lineno > 1500
  end
file.close

when in text in string there is single quote aka ' , for example an expression

It's  funny  

Then after parsing, saving and populating I get

It�s  funny

Any idea how to solve this and where from it comes, from Ruby, From sqlite or from what? how to solve it?

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

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

发布评论

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

评论(1

吻安 2024-12-07 14:49:07

我会检查以确保您的解析没有做一些有趣的事情。 Rhodes 在其 ORM 中处理所有必要的转义。我从来没有遇到过数据库中引号的任何问题。

I would check to make sure that your parsing isn't doing something funny. The Rhodes handles all of the necessary escaping in its ORM. I've never had any issues with quotes in the db.

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