是否有有关Rails列类型的文档?


181

除了在此页面上找到的简单类型列表之外,我还在寻找更多的东西:

:primary_key,:string,:text,:integer,:float,:decimal,:datetime,:timestamp,:time,:date,:binary,:boolean

但是是否有任何实际定义的文档这些字段?

特别:

  • :string和之间有什么区别:text
  • 介于:float和之间:decimal
  • 什么是显着特征:time:timestamp:datetime

这些类型的细微差别是否记录在任何地方?

编辑:DB平台实现的要点与我要问的问题无关。 如果说:datetime在Rails文档中没有定义的预期含义,那么在选择相应的列类型时db-adapter-writers将经历什么?


1
请问我选择的单词,事物是什么类型的?就像,它们是字段或属性还是什么。我正在寻找除和以外的其他东西,除此以外我什么也找不到。所以,我只是想知道将来的参考。:string:text
l1zZY 2015年

2
@ l1zZY,您可能要查找的术语是“数据类型”。
thatpaintingelephant

Answers:


397

根据个人经验建立的准则:

  • 字串
    • 限制为255个字符(取决于DBMS)
    • 用于短文本字段(姓名,电子邮件等)
  • 文字
    • 无限长度(取决于DBMS)
    • 用于评论,博客文章等。一般经验法则:如果是通过textarea捕获的,则使用Text。对于使用文本字段的输入,请使用字符串。
  • 整数
    • 整数
  • 浮点数
    • 以浮点精度存储的十进制数
    • 精度是固定的,这对于某些计算可能是有问题的;由于舍入不正确,通常对数学运算不利。
  • 小数
    • 精确存储的十进制数根据您的计算需要而变化;将它们用于需要精确的数学运算
    • 这个职位的例子和彩车和小数之间的差异进行了深入的解释。
  • 布尔值
    • 用于存储true / false属性(即只有两个状态的事物,例如on / off)
  • 二进制
    • 用于以原始原始格式将图像,电影和其他文件存储在称为blob的数据块中
  • :首要的关键
    • 这个数据类型是一个占位符,Rails可以将其转换为您选择的数据库所需的任何主键数据类型(即serial primary key在postgreSQL中)。它的使用有些复杂,不建议使用。
    • 使用模型和迁移约束(例如validates_uniqueness_ofadd_index带有该:unique => true选项)来模拟您自己的某个字段上的主键功能。
  • 日期
    • 仅存储日期(年,月,日)
  • 时间
    • 仅存储时间(小时,分钟,秒)
  • 日期时间
    • 同时存储日期和时间
  • 时间戳记
    • 同时存储日期和时间
    • 注意:就Rails而言,Timestamp和DateTime表示同一件事(使用任一类型存储日期和时间)。有关为何两者同时存在的TL; DR描述,请阅读下面的段落。

这些是经常引起混乱的类型;我希望这有帮助。我真的不知道为什么没有关于这些的官方文档。另外,我想您所引用的这些数据库适配器是由编写Rails的同一人编写的,因此在编写适配器时,它们可能不需要任何文档。希望这可以帮助!

注意:据我所知,:DateTime和都存在:Timestamp于Rails中,主要是为了与数据库系统兼容。例如,MySQL的TIMESTAMP数据类型存储为unix时间戳。它的有效范围是1970年到2038年,并且时间存储为自从最后一个纪元以来经过的秒数本来是标准的,但实际上系统可能有所不同。意识到相对时间不是数据库中的好东西,MySQL随后引入了DATETIME数据类型,该数据类型存储年,月,日,小时,分钟和秒中的每个数字,但会增加大小。的TIMESTAMP保留数据类型是为了向后兼容。其他数据库系统也经历了类似的演变。Rails意识到存在多种标准,并提供了两者的接口。但是,Rails ActiveRecord的默认日期:Timestamp:DateTimeUTC日期均存储在MySql的UTC中DATETIME,因此对Rails程序员没有任何功能上的区别。它们的存在使希望在两者之间进行区分的用户可以这样做。(为了更深入的说明,请参阅 SO答案)。


21
那真是太棒了,@ aguazales。Rails文档中没有这样的东西似乎是一个巨大的疏忽。
Grant Birchmeier

谢谢:)我完全同意,ActiveRecord及其数据类型对Rails非常重要,idk为什么这不是标准文档。
aguazales

2
文本的长度并不总是无限的-在MySQL中,文本的长度上限为16kb。如果需要超过16kb,则有MEDIUMTEXT和LONGTEXT数据库类型。
2014年

3
这也是Rails迁移数据类型– MySql – Postgresql – SQLite的良好来源。我知道它是特定于数据库的,但是了解实际的实现仍然有助于理解Rails数据库类型。
内特2014年

1
我不确定100%,但是我认为Nate的资源已重新发布在这里
aguazales

10

从Rails master分支源代码中,我发现:

抽象的mysql_adapter

#activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb

  NATIVE_DATABASE_TYPES = {
    primary_key: "bigint auto_increment PRIMARY KEY",
    string:      { name: "varchar", limit: 255 },
    text:        { name: "text", limit: 65535 },
    integer:     { name: "int", limit: 4 },
    float:       { name: "float" },
    decimal:     { name: "decimal" },
    datetime:    { name: "datetime" },
    timestamp:   { name: "timestamp" },
    time:        { name: "time" },
    date:        { name: "date" },
    binary:      { name: "blob", limit: 65535 },
    boolean:     { name: "tinyint", limit: 1 },
    json:        { name: "json" },
  }

  # Maps logical Rails types to MySQL-specific data types.
  def type_to_sql(type, limit = nil, precision = nil, scale = nil, unsigned = nil)
    sql = case type.to_s
    when 'integer'
      integer_to_sql(limit)
    when 'text'
      text_to_sql(limit)
    when 'blob'
      binary_to_sql(limit)
    when 'binary'
      if (0..0xfff) === limit
        "varbinary(#{limit})"
      else
        binary_to_sql(limit)
      end
    else
      super(type, limit, precision, scale)
    end

    sql << ' unsigned' if unsigned && type != :primary_key
    sql
  end    

# and integer ...

  def integer_to_sql(limit) # :nodoc:
    case limit
    when 1; 'tinyint'
    when 2; 'smallint'
    when 3; 'mediumint'
    when nil, 4; 'int'
    when 5..8; 'bigint'
    else raise(ActiveRecordError, "No integer type has byte size #{limit}")
    end
  end

 # and text ..

  def text_to_sql(limit) # :nodoc:
    case limit
    when 0..0xff;               'tinytext'
    when nil, 0x100..0xffff;    'text'
    when 0x10000..0xffffff;     'mediumtext'
    when 0x1000000..0xffffffff; 'longtext'
    else raise(ActiveRecordError, "No text type has byte length #{limit}")
    end
  end

# and binary ...

    def binary_to_sql(limit) # :nodoc:
      case limit
      when 0..0xff;               "tinyblob"
      when nil, 0x100..0xffff;    "blob"
      when 0x10000..0xffffff;     "mediumblob"
      when 0x1000000..0xffffffff; "longblob"
      else raise(ActiveRecordError, "No binary type has byte length #{limit}")
      end
    end

supertype_to_sql方法

#activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
  def type_to_sql(type, limit = nil, precision = nil, scale = nil) #:nodoc:
    type = type.to_sym if type
    if native = native_database_types[type]
      column_type_sql = (native.is_a?(Hash) ? native[:name] : native).dup

      if type == :decimal # ignore limit, use precision and scale
        scale ||= native[:scale]

        if precision ||= native[:precision]
          if scale
            column_type_sql << "(#{precision},#{scale})"
          else
            column_type_sql << "(#{precision})"
          end
        elsif scale
          raise ArgumentError, "Error adding decimal column: precision cannot be empty if scale is specified"
        end

      elsif [:datetime, :time].include?(type) && precision ||= native[:precision]
        if (0..6) === precision
          column_type_sql << "(#{precision})"
        else
          raise(ActiveRecordError, "No #{native[:name]} type has precision of #{precision}. The allowed range of precision is from 0 to 6")
        end
      elsif (type != :primary_key) && (limit ||= native.is_a?(Hash) && native[:limit])
        column_type_sql << "(#{limit})"
      end

      column_type_sql
    else
      type.to_s
    end
  end
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.