Hello, I would like to use the sqlite3_bind_* functions to bind data to a TIMESTAMP column.
With regular SQL I can use the following command:
INSERT INTO TABLE (completed) VALUES(date('now'));
The data('now') function returns the current date.
What is the correct method in the C API to have the same functionality?
If there is a better way to handle timestamps perhaps with another
column type, please let me know. I am flexible.
--
- Doug Hanks = dhanks(at)gmail(dot)com

