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 -

Java JSoup error fetching URL -

webstorm - PhpStorm file cache conflict with TypeScript compiler -