Are you sure, you're in the right forum?
Here's my .dfm
btw: What's this supposed to do?
'INSERT INTO Archivos (nombrearchivo, fechacreacion, estado) VALUES (:path, Now(), ''Registrado'')';
There is no "Now()"-Function in SQLite-SQL
It's either
"SELECT Date()" if you only need Date (Acc. to UTC!!!)
Or
"SELECT DateTime()" if you need Date with Time (acc. to UTC!!)
If you need localtime you have to use a localtime-modifier
see here:
https://www.sqlite.org/lang_datefunc.htmlYour INSERT would look like this (with localtime-modifier)
'INSERT INTO Archivos (nombrearchivo, fechacreacion, estado) VALUES (:path, DateTime(''now'',''localtime''), ''Registrado'')';
Or better: Use a Parameter for the DateTime