Search notes:

SQLite: integer data type

Create a table, insert 232-1, 232, 263-1, 263, 264-1 and 264 and select the inserted values and datatypes:
create table t (
   o integer primary key,
   n integer
);

insert into t(o, n) values (1,           4294967295);
insert into t(o, n) values (2,           4294967296);
insert into t(o, n) values (3,  9223372036854775807);
insert into t(o, n) values (4,  9223372036854775808);
insert into t(o, n) values (5, 18446744073709551615);
insert into t(o, n) values (6, 18446744073709551616);

select
   typeof(n),
   n
from
   t
order by
   o;

integer|4294967295
integer|4294967296
integer|9223372036854775807
real|9.22337203685478e+18
real|1.84467440737096e+19
real|1.84467440737096e+19

See also

SQLite data types

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1788395922, '216.73.217.21', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/SQLite/datatypes/integer/index(62): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78