In MySQL, you can use the NOW() function, but in SQLite you canโt use the NOW function.
A memo on how to INSERT the current time matching DATETIME in SQLite3.
As an alternative function, there is CURRENT_TIMESTAMP.
e.g.INSERT INTO Date (LastModifiedTime) VALUES(CURRENT_TIMESTAMP)
Reference
Inserting current date and time in SQLite database - Stack Overflow