Skip to content
Dmitry Kochin edited this page Jul 11, 2018 · 1 revision

As of Alpha version Ties.DB supports the following data types

  • Boolean: true | false
  • Integer: -2^31 -- 2^31-1
  • Long: -2^63 -- 2^63-1
  • BigInt: arbitrary precision integer
  • Float: IEEE-754 32bit single precision floating point
  • Double: IEEE-754 64bit double precision floating point
  • Decimal: arbitrary precision floating point number (exponent is up to 32bit, however)
  • String: UTF-8 encoded string
  • Binary: binary blob
  • Time: number of milliseconds since 2001-01-01UTC, 64bit
  • Duration: time span, number of months, and seconds.

Composite data types will follow.

Clone this wiki locally