3

In Web SQL Database, what is a int max value? (exactly in Safari on iOS 7)

I didn't find anything in docs: http://www.w3.org/TR/webdatabase/

Radek Wilczak
  • 299
  • 5
  • 14

1 Answers1

3

Currently all implementations of web-sql use SQLite (says Wikipedia and the spec says "User agents must implement the SQL dialect supported by Sqlite 3.6.19").

SQLite's maxint value is 2^63-1 = 9223372036854775807

mb21
  • 34,845
  • 8
  • 116
  • 142