The following SQL Query:
CREATE TABLE IF NOT EXISTS `dsgdsgdsg` (`combo` varchar(255) NOT NULL, `dt` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`combo`))
Returns:
SQL logic error or missing database near "ON": syntax error
Which seems to be related to "ON UPDATE", why is that? Is On Update not supported by SQLite? if so, is there an alternative (So that when I update using REPLACE INTO, I wont need to supply a new timestamp it just updates).