How to configure correct timezone in JDBC? - java

I've this url to set up the connection in my Italy website, however, when i try to perform some insert action from the site, the date is still not right. (it should be for example: 01:24, but it is 02:24)
jdbc.url=jdbc:mysql://sql.example.com/database?autoReconnect=true&characterEncoding=UTF-8&sessionVariables=time_zone='Europe/Rome'
Do I need to add any other params to make it work correctly?
Is there a complete list of all timezones?

Sorry I don't have the answer to your direct question. However I can suggest something worth considering that will avoid all time zone problems at the database entirely. If possible I recommend simply using BIGINT fields for storing dates with Java. You just store the long of the number of milliseconds since the epoch, e.g. from System.currentTimeMillis() or Date.getTime().
Then interpretation of the time zone for a date is always managed in Java, which is good at using the epoch based number. It does make it a little more involved to directly query the database for a date outside of Java, however it's not too hard and tends to be worth it IMO:
SELECT FROM_UNIXTIME(date_field / 1000) FROM table;

There is a list of "tz" timezone names in Wikipedia.

Related

Converting timezones with JDBC/MariaDB dynamically

so I'm fairly new to MariaDB's JDBC connector, but I'm tackling a bug with a program I'm working on [openhab]), and I'm trying to resolve how it handles timezones in MariaDB.
Basically, my question is how do I handle timezones in JDBC "the right way", and best I can tell, mariadb JDBC doesn't have a good answer, I'm hoping I'm wrong.
Anyways, if I want to query a time in the database, how do I do that, with the right timezone?
SELECT id, ts, dt FROM timetest WHERE ts > ? AND ts < ?
And then I pass two ZonedDateTime's and it turns out that the result is dependent on the connection timezone. However I don't think it should be, because both the dates and times in the database are stored in UTC (that is, if I insert NOW() it doesn't matter what the timezone of the connection is, it's still NOW()), likewise, a ZonedDateTime points to an instance in time, it has a timezone that it should be represented in, but fundamentally points to the point in time.
So then the question is how do I make dates work independent of the timezone, is that something the connector can handle, or do I have to do the conversion myself? Can I query the connection timezone from the connector? Or do I need to perform an SQL query to get the timezone.
I'm mostly asking this because I would like the application to just not care about the connection timezone, it should store points in time and retrieve points in time, and yes, I understand that's best done in UTC, but some people specify their local time and that shouldn't destroy the process.

Creating date/time/location class and storing it in mysql

So my goal is to create a class where someone can log in and create an 'event', which really just means they can store a String that is the name of the 'event' (like Woodstock), a future date, and a time that the event starts. I have to store this in a mysql database (I am using LAMP). I've found Joda time, but I have no idea if LocalDateTime can be stored easily in my database (I don't necessarily need time zones as this is a local program but if it needs to have time zones thats fine).
What would also be cool, but I really don't have to implement this but if they could see a calendar for like the next three months or something so they can add the date easily. Anyway, does anyone recommend one format over any others?

How to keep date info?

In java, I want to know that what is the best practice to keep date info for display, query, report etc. It seems that if we persist as long, all timezone dependency will be removed and we will keep 'persist globally, display locally' principle since Date object automatically converts long to current timezone.
But what is the advantage of persisting as Date object?
Do I loose any info other than info owner's timezone?
Can I get any wrong info when DLS takes into account?
Difference between persisting as UTC date and long is just readable db info?
Depending on your database you should use either TIMESTAMP WITH TIMEZONE or you convert it to UTC time and store it as long.
The first one relies on the DB to handle it correctly (the DB will, but will your DB driver? You have to test this for your setup). The second one makes it a manual process, you will get the correct result in the end but will have more hazzle with it because you have to take care about everything.
Inside Java you might want to use Calendar over Date because there you can specify the TIMEZONE etc. manually, thus you are able to display Dates in timezones different to your own easier.

Using a criteria for time restriction

I'm having some problems with a simple query I'm doing.
I have a postgresql database, with a time wihout zone column.
I cannot change the type of this column. Also, I have to use criterias, so don't tell me to change this. However, if there is a better solution for the future instead of using the time type I'm curious about it.
This column is mapped to a java.util.Date attribute. This could be changed to Time or whatever.
What I'm doing is adding this :
Time someTime = someDate.getTime();
criteria.add(Restrictions.eq(propertyName, someTime)));
This criteria doesn't return anything, when it should. What is done is the following: The user puts some string time, that is parsed to Date, being that 1970-1-1 and the time. This time is then added to the criteria. Also, the time in the database I'm using as example, is the same Date (1970-1-1, etc) that the one that is created when parsing the user data.
I have tried to search for some documentation on how criterias are used against time without timezone but haven't found anything.
Suggestions why this is failing?
UPDATE:The problem has been solved using the library JodaTime. But I still don't understand why was failing...

In the database, why can't we just use "Long" integers for dates (millis since epoch)

I would like to use a Long datatype in the database to represent dates (as millis since epoch). The reason why, is that storing dates is so complex with the jdbc driver and Oracle engine. If you submit the wrong datatype in preparedStatement it casts a timestamp to a date (or vice versa) blowing your index, resulting in full table scans in the worst case scenario.
I can't remember the details, but I know that there are details to remember. I don't want to have to remember details. It seems like just storing dates as long (millis since epoch) would work here just fine and I have nothing to remember.
Note, I feel that a time zone is merely presentational. It should never be stored in the first place. Most companies have a policy of only using UTC, but once again, that is just more information to know. Let's all just store the number of milliseconds since epoch, and upon display show the user the millis formatted to THEIR particular time zone.
EDIT:
It just seems like millions of dollars in bugs and wasted productivity/confusion revolve around time zones and date formatting, along with crazy jdbc driver date conversion/casting. Let's do away with it once and for all.
I realize now that another reason against doing what I suggest, is that we may want to save space in the db. In that case we can have decaseconds or even simply "seconds" since epoch. To whichever degree you would like to save space.
You can use integers or some other appropriate type to represent date/time values in your database. However it does introduce a couple of problems:
All of your current and future (!!!) applications (Java or otherwise) that use the database tables need to convert between database integers and date/time values.
If your SQL queries, SQL stored procedures or SQL triggers involve the relevant columns, they may need to do the conversions. That makes them more complicated / hard to get right. Furthermore, the extra complexity could cause the query engine to fall back to a slower way of executing your query ... because the query optimizer doesn't understand what you are doing.
Using integers to represent dates will make it harder for people to do ad-hoc SQL queries against the table that involve the date columns.
EDIT
Whether you save space by representing dates as integers is database specific. IIRC, Oracle stores date/time values as a primitive integers. And I expect any decent RDBMS would do the same ... both for storage space and query efficiency.
Storing date/time values as integers does not address timezone issue. This is a fundamentally complicated problem.
In some cases you want a date or date/time to represent an absolute point in time.
In other cases, you want it to represent a point in time relative to the geographical location / timezone in which some event occurred.
In other cases, you want to represent the time relative to the location of the system, or of the user.
Then there is the question of granularity. (Using ISO date syntax for clarity) does "1999" mean the same thing as "1999-01-01" or "1999-01-01T00:00:00"? And what about sub-second precision?
The point is that no simple SQL date/time (or integer) representation can deal with all of this. The root cause of the bugs/issues/difficulties we see is programmers taking shortcuts in their implementation and (more importantly) being sloppy in their thinking.
EDIT 2
There is still the issue that many problems still arise due to differences in the way that various databases and their respective JDBC drivers handle date literals and assumptions about timezones. I'm not an expert on JDBC and the SQL standard(s) but the root problems seem to be:
Database vendors have not fully implemented the datetime types as specified in (for example) SQL-92.
The SQL standards don't specify a single syntax for datetime literals, but allow database vendor specific syntaxes.
The SQL standards allow the timezone to be defaulted, without any standard way to specify (or even find out) what it defaults to. More vendor-specific solutions.
The JDBC specification doesn't provide a way for an application to get or set the default timezone, or select date-time literal syntaxes.
All of this adds up to a mess of portability and configuration issues for the Java developer. However, I don't think it is significantly worse than the portability and
configuration problems we get with other aspects of Java / RDBMS applications. And by ditching datetime types entirely, you'd be buying into a bunch of other problems; see above.
I do this all the time. The practice has been quite verbally criticized to me repeatedly. I have defended this practice though as my systems (e.g.) have survived DST changes (secondary airline reservation systems) where other systems performing DST-boundary, international or Arizona flight duration calcs have failed miserably. Date arithmetic (not necessarily calendar arithmetic) becomes significantly easier.
It is trivial in nearly every major programming/web language to convert for display. In fact the integerial unix epoch date can be pushed directly to a web page and allow JavaScript to translate into local time avoiding intermediate conversion.
The only place this does not work well is in Calendar arithmetic: Add 1 month to 31 January.
On reason I can think of is to store date and times previous to Jan 1, 1970 00:00:00 GMT.
I feel your pain though. Oracle date/datetime treatment is painful in JDBC. It is even inconsistent among different versions of the drivers!
I have to say that I haven't found much problems in other JDBC drivers (other DB vendors) though...
Now problem at all.
Unless you need some query which contains some calculation on the date column, in that case, the database needs to have a date type that it understands.
You probably don't need that, so you can use any representation you like.
Just store the UTC long (Big Integer), and make the DB column name indicate it is holding the millis_since_epoch (could use comment as well but I'm not certain all DB's support comments). This way you can move the data to any DB without concern, the data can be safely interpreted outside the app that created it (this is why the DB column name is so important), and you can handle presentation/zone however you need via UI.
What's the question? Are you asking if it's possible? That would depend on which database you're using, but I assume it's possible with most. I've definitely done that with SQL lite in Android apps (which are programmed in Java, if you aren't familiar with it).
The only problem of not using the date data type is you may have to do conversions in your app from the Long value to a date if you need to do things like comparing dates. You can store data anyway you like, the presentation layer is where it might become more problematic and require additional code. For example, populating components like a calendar.

Categories

Resources