bah
One day someone will write the perfect Java database access layer. By perfect, I mean “Does everything _I_ want, and doesn’t make me do anything I don’t want to do, and doesn’t require XML configuration files either”. I’ve been investigating a few of them, and none of them really quite cut it….though simpleorm is pretty close to what I’m looking for. It has a couple of minor annoyances though…first, it needs to support the JDBC driver you’re using – my first experimentation with it didn’t work, since it didn’t seem to recognise the official MySQL connecter/J drivers….but at work using the Oracle driver was no problem. Secondly for its support for foreign key references to work, the foreign key field must either be named the same as the primary key of the linked table, or be SOMEPREFIX + the primary key. The apparent solution to the problem of a primary key named ID and an foreign key named Account_No is either 1. rename the fields, 2 create a database view, or 3. don’t use the feature. Not very helpful.
However, I think I’ll probably still use it anyway, because it’s still the lightest of any ORM or Database access library I’ve seen yet.
2 Responses to bah
Leave a Reply Cancel reply
-
Articles
- March 2011
- July 2010
- May 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
- January 2005
- December 2004
- November 2004
- October 2004
- September 2004
- August 2004
- July 2004
- June 2004
- May 2004
- April 2004
- March 2004
- February 2004
- January 2004
- December 2003
- November 2003
- October 2003
-
Meta





Man – I wish you were living in NZ… right now a mysql database is kicking my ass, and no one here seems to know what to do about it! Grrrrr.
What sort of problems are you having? Although, MySQL isn’t really my strong area, we use Oracle at work, so that’s what I know best…