1
votes

how can i enter a date in my SQLite database while i can not use the datetime datatype CREATE TABLE user ( name text , bd datetime --right here );

There is no DATETIME data type in SQLite: sqlite.org/datatype3.html Define the column as TEXT and store the dates in the format "YYYY-MM-DD hh:mm:ss"forpas