Top "Timestamp" questions

A timestamp is the time at which an event is recorded by a computer system.

How to use Joda-Time with java.sql.Timestamp

I Have a prepared statement INSERT INTO mst(time) VALUES (?); where time is of type Timestamp in a PostgreSQL database. …

java postgresql timestamp jodatime
How to Insert custom date into mysql timestamp field?

I have tried to insert date and time string formatted into mysql timestamp field by using following two methods but …

mysql datetime timestamp unix-timestamp
Converting UTC timestamp to ISO 8601 in Ruby

I have a timestamp that is in UTC "2010-10-25 23:48:46 UTC" I need to convert it into ISO 8601 "2010-10-29 06:09…

ruby-on-rails ruby timestamp
How to format bigint field into a date in Postgresql?

I have a table with a field of type bigint. This field store a timestamp. I want to date format …

sql postgresql date timestamp bigint
Get last modified time of file in linux

I am working on a C program where I need to get the last modified time of the file. What …

c linux timestamp last-modified
Discard millisecond part from timestamp

How can I discard/round the millisecond part, better if the second part is also removed from a timestamp w/…

sql postgresql casting timestamp rounding
How do I increment a java.sql.Timestamp by 14 days?

I have an app that takes a Timestamp as a boundary for the start date and end date of a …

java sql timestamp increment
Finding days between 2 unix timestamps in php

Hay, i have a database holding events. There are 2 fields 'start' and 'end', these contain timestamps. When an admin enters …

php unix timestamp strtotime mktime
Convert Json timestamp to normal date and time in javascript

I have a Json timestamp that I would like to convert into simple date time format using javascript. I need …

javascript json datetime timestamp simpledateformat
Convert java.time.Instant to java.sql.Timestamp without Zone offset

In the application I am developing, I need to convert java.time.Instant object to java.sql.Timestamp. When I …

java date time timestamp java.time.instant