I come from a PHP background. I've been a PHP developer for a long time now. I am wanting to jump into Android App development. I created one app, but I don't feel like I have a strong grasp of the time and date functions, especially when being stored in the database. O one of my main concerns is how to store and retrieve dates from the database (SQLite) and compare them.
The way I do it in PHP is I simple; I use the time() function, which creates a unix timestamp for the current time, and then I store it as an integer in a MySQL database. This makes things very simple and easy due to MySQL's date functions, as well as the ability to easily retrieve and compare the date via PHP as an integer.
So basically, I'm wondering what the best solution would be for Java. What do you recommend I do when creating, storing, retrieving, and comparing dates for my future Android apps?
Here is an example of the PHP code I'd use, perhaps this will give someone a better idea of what I'm used to and what I'm looking for:
Database structure:
`id` (int) auto increment
`username` (varchar)
`the_date` (int)
<?php
$username = 'scarhand77';
$the_date = time();
// insert into database
mysql_query("insert into `stack_overflow` (`username`, `the_date`) values ('$username', '$the_date')");
// retrieve from database
$user_date = mysql_result(mysql_query("select `the_date` from `stack_overflow` where `username`='$username'"), 0);
// compare $user_date, see if its older than right now
if ($user_date < time())
echo 'it is older';
else
echo 'it is not older';
?>
Any help would be greatly appreciated.