-
thomasm registered the H2 Database Engine project.
2008-01-21 16:05:37 UTC in H2 Database Engine
-
Hello,
Is it possible to test the H2 Database Engine as well? The configuration is simple, as it is compatible to HSQLDB. You can download the H2 database here:
http://www.h2database.com
Thanks,
Thomas.
2007-11-06 21:12:01 UTC in PolePosition
-
Sorry for reopening the bug. I read the comments in the wrong direction... (I'm now more used to GMail). So I close it the bug again.
2007-08-11 07:22:00 UTC in JLibrary
-
It seems to me this bug was closed without solving the problem?
If it is solved, then where?
Did you read the comment about 'Double-checked locking may fail'?
The solution I proposed works always, and is a lot simpler.
Thomas.
2007-08-11 07:16:10 UTC in JLibrary
-
Hi,
This is not multithreading safe:
private static SessionManager instance;
public static SessionManager getInstance() {
if (instance == null) {
instance = new SessionManager();
}
return instance;
}
Instead, I suggest to use:
private static SessionManager instance = new SessionManager();
public static SessionManager getInstance() {
return instance;
}
Thomas.
2007-08-10 09:43:39 UTC in JLibrary
-
In the list of fonts, I don't get 'Tahoma'. However, I
get 'Tahoma Fett' ('Fett' means 'Bold' in German).
Also, when selecting Verdana, I can't set a font size
smaller than 8. Font size 8 is too large for me. The
problem with 'Tahoma' appears on two computers. Both
have German Windows installed (Windows XP and Windows
2000). Region is Switzerland (not sure if this is a
problem).
2006-10-12 19:28:45 UTC in Notepad++
-
This is a bugfix for MySQL autoincrement.
The directory structure has changed.
New database versions have been tested.
2005-04-27 20:10:51 UTC in LDBC Liberty Database Connectivity
-
thomasm committed revision 2259 to the HyperSQL Database Engine SVN repository, changing 2 files.
2004-12-23 22:27:38 UTC in HyperSQL Database Engine
-
thomasm committed patchset 1046 of module hsqldb-dev to the HyperSQL Database Engine CVS repository, changing 2 files.
2004-12-23 22:27:23 UTC in HyperSQL Database Engine
-
thomasm committed patchset 1030 of module hsqldb-dev to the HyperSQL Database Engine CVS repository, changing 1 files.
2004-10-22 20:48:17 UTC in HyperSQL Database Engine