How to insert time stamp into an SQLite database column? Using the function time('now')? How to insert time stamp into an SQLite database column? Using the function time('now')? database database

How to insert time stamp into an SQLite database column? Using the function time('now')?


Since the default for the column is CURRENT_TIMESTAMP, what if you leave out entirely this line:

contentValues.put( COLUMN_TIME_STAMP, " time('now') " );

Won't it now insert the current timestamp into that column by default?