aspose file tools
The moose likes JDBC and the fly likes SQL Current Time Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "SQL Current Time" Watch "SQL Current Time" New topic
Author

SQL Current Time

Mark Hughes
Ranch Hand

Joined: Jul 14, 2006
Posts: 145
Hi all,

Is it possible to get a time stamp in SQL in the format of a long datatype similar to the java Method System.currentTimeMillis() .

I know sql has functions similar to SELECT NOW(); which return something like "2009-06-05 16:10:09" , but i would like to hava a method to return it as a long number. As i have saved alot of my time instances in the database as long numbers and now i have the need to do a select based on the current time and instance of a saved long number. I dont think a SELECT statement would work if i tried something like SELECT .... WHERE (SELECT NOW()) < column.TimeMillisAsLong.

Best
Mark Hughes
Paul Sturrock
Bartender

Joined: Apr 14, 2004
Posts: 10336

What wrong with:


JavaRanch FAQ HowToAskQuestionsOnJavaRanch
Mark Hughes
Ranch Hand

Joined: Jul 14, 2006
Posts: 145
Thanks Paul i did not think of that, very good. Ill give it a go.

Best
Mark Hughes
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: SQL Current Time
 
Similar Threads
Code review
B&S: How do I get the "new" recNo?
Building an Internal DSL?
DataInputStream and DataOutputStream in Jar file (no need to reply now)
Another question about Widening and Boxing