Code inspections:
In RdbmsSpecifics.java a static SimpleDateFormat is used.
protected static final DateFormat dateFormat =
new SimpleDateFormat("MM/dd/yyyy HH:mm:ss.SSS");
The dateFormat object will be used by all threads and SimpleDateFormat is
not thread safe (see javadoc).
Original issue reported on code.google.com by mark.r.j...@gmail.com on 15 May 2010 at 4:49
Original issue reported on code.google.com by
mark.r.j...@gmail.com
on 15 May 2010 at 4:49