Java examples for java.sql:Timestamp
Return a Timestamp for right now
//package com.java2s; public class Main { /**//w ww . j ava 2s. c o m * Return a Timestamp for right now * * @return Timestamp for right now */ public static java.sql.Timestamp nowTimestamp() { return new java.sql.Timestamp(System.currentTimeMillis()); } }