SQLite table creation date
Posted
by legr3c
on Stack Overflow
See other posts from Stack Overflow
or by legr3c
Published on 2010-05-20T22:10:27Z
Indexed on
2010/05/20
22:40 UTC
Read the original article
Hit count: 265
Is there a way to query the creation date of a table in SQLite? I am new to SQL, overall. I just found this http://stackoverflow.com/questions/1171019/sql-server-table-creation-date-query. I am assuming that sqlite_master is the equivalent to sys.tables in SQLite. Is that correct? But then my sqlite_master table only has the columns "type", "name", "tbl_name", "rootpage" and "sql". If this is not possible in SQLite, what would be the best way to implement this functionality by myself?
© Stack Overflow or respective owner