What is the sqlite default column type? -


in 1 of our company's scripts found sqlite create table script 1 of columns data type definition missing. default value of column type @ time of table creation?

create table x( y,  z int );  

in above simplified example y column under question.

when try check column with

pragma table_info(x) 

the information y column missing.

there no types of column type affinity. in case it's omitted, type affinity numeric. can read on here: https://www.sqlite.org/datatype3.html


Comments

Popular posts from this blog

ios - Memory not freeing up after popping viewcontroller using ARC -

Django REST Framework perform_create: You cannot call `.save()` after accessing `serializer.data` -

Why does Go error when trying to marshal this JSON? -