5
votes
5answers
5k views
access to auto increment identity field after SQL insert in java
Any advise on how to read auto incrementing identity field assigned to newly created record from call through java.sql.Statement.executeUpdate ?
I know how to do this in SQL for several DB …
1
vote
Would it be useful to add extra info to stack traces?
Tempting, but I don't think this feature warrants a new keyword in Java (and that much more complexity in the language).
I've found the use of Throwable.printStackTrace has usually been p …
4
votes
Working with latitude/longitude values in Java
Here is a Java implementation of Haversine formula. I use this in a project to calculate distance in miles between lat/l …
1
vote
When to use final
Somewhat of a trade-off as you mention, but I prefer explicit use of something over implicit use. This will help remove some ambiguity for future maintainers of code - even if it is just you. …
