databind-developer Mailing List for DataBind
Status: Alpha
Brought to you by:
aeden
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
From: Lachlan O'D. <od...@ca...> - 2002-09-30 10:09:15
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I'm just checking out DataBind to see how it works, I haven't actually tried running it yet. Line 488 of SQLBinder.java looks wrong to me: complexObject = Class.forName(complexFieldClass); Shouldn't this be actually creating an instance of complexFieldClass: complexObject = Class.forName(complexFieldClass).newInstance(); ? ==== Lachlan O'Dea <lo...@ve...> Computer Associates Pty Ltd Webmaster Vet - Anti-Virus Software http://www.vet.com.au/ Ich bin CA! -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (Darwin) iD8DBQE9mCK9oBZahcUBONoRAqg4AJ9fuUbjb+xS0qu2jYinbEJYBwWRwwCgosf1 Vv9qpQpNRFmUMglfN4eMHnA= =e5at -----END PGP SIGNATURE----- |
From: Lachlan O'D. <od...@ca...> - 2002-09-30 09:03:23
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, I noticed a minor typo in Field.java: =================================================================== RCS file: /cvsroot/databind/databind/src/org/databind/Field.java,v retrieving revision 1.7 diff -u -r1.7 Field.java - --- Field.java 28 Jan 2002 21:57:59 -0000 1.7 +++ Field.java 30 Sep 2002 08:59:22 -0000 @@ -134,7 +134,7 @@ */ public void write(Object target, Object value) throws PersistanceException{ - - if(readMethod == null){ + if(writeMethod == null){ throw new PersistanceException("Write not supported for field " + name); } The bug tracking on SourceForge doesn't seem to have been configured, so I'm posting here. ==== Lachlan O'Dea <lo...@ve...> Computer Associates Pty Ltd Webmaster Vet - Anti-Virus Software http://www.vet.com.au/ Ich bin CA! -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.7 (Darwin) iD8DBQE9mBNQoBZahcUBONoRAg7oAJ99zRtCi1UMLHNoyZLcFFEls8C3SACePAvE kGNhKCyl5wjbf4HAeNHb38E= =wjRo -----END PGP SIGNATURE----- |
From: Anthony E. <me...@an...> - 2001-11-30 03:12:21
|
Version 0.3 of DataBind is now available at http://databind.sf.net/ . DataBind is a library to simplify the persistance of Java objects to a datastore. A datastore may be a relational database, XML files, or any other type of datastore. Java objects which are persisted do not need to be modified in any way. The only requirement for persisted objects is that they have read and write methods for each field that you would like to persist. This version adds support for loading and storing collections of objects. Read and write methods are now optional. Added search package. Moved SQL binder classes to org.databind.binder.sql. Added copyright headers. Please send all questions and comments to me...@an.... |