I've created a tool to generate the SimpleORM Java classes from XML. I saw the one in the project that creates from an existing database and patterned mine...
From the stuff you tried it is not clear to me what the end result you want is. Could it be that You want obj.setString(obj.fieldname, "somevalue") to store...
Thanks. I recently came to the same conclusions. I'm all set on this one. ... From: SimpleORM@yahoogroups.com [mailto:SimpleORM@yahoogroups.com] On Behalf Of...
Steve Swett
sswett@...
Jan 8, 2006 7:50 am
1297
Thanks for taking the effort to try to help. Unfortunately, since I'm trying to work with an existing database, I don't have the luxury of re-defining the...
Steve Swett
sswett@...
Jan 8, 2006 8:22 am
1298
It should just be Department.meta. Fixed, thanks. (getMeta() is needed in general so that the RecordInstance can access the Meta. A static field is not good...
Anthony & Melissa Ber...
berglas@...
Jan 8, 2006 8:53 am
1299
1) I used the SFD_GENERATED_KEY just to show how to use it should you want it. Just remove it if u dont want it. 2) If I get you right you are saying that you...
It sounds to me like your Teacher table DistrictId is meant to be a foreign key to the DistrictCode in your District table. Your example data seems to support...
Does SimpleORM support the use of schemas? (I mean schema in the DDL sense of "CREATE SCHEMA"). I'm attempting to use them with Postgresql 8.1, and when I add...
The message you are getting seems to be obtained from your database backend. To get a definitive answer I would suggest intercepting the query in debug and run...
SO puts the schema and table name in quotes but not the way Posgres likes it. Posgres understands "xyz"."my_table" but not "xyz.my_table" A workaround is to...
Thanks. "xyz"."my_table" would be necessary to correctly handle the posibility of a table name having a "." in it (not that I would do such a thing but since...
I know some friends already who have met a few nice honeys off of this kind of stuff (here is the place they use: http://www.meetheretoday.info/ysug , but what...
ziggy-millam987@...
Jan 20, 2006 2:34 pm
1306
Damn, it has sure been a while... I just realized today that it's been 18 months since I went out with a special lady last, but I'm pretty happy to be heading...
ziggy-millam987@...
Jan 21, 2006 10:27 am
1307
Met my fiance here! hehe. Thought I should share it with any other guys who are worried about ending up alone like I was. Check it out...
ziggy-millam987@...
Jan 22, 2006 1:26 pm
1308
Well even if you're not looking for love, and just a bit of fun thought I'd give you all this tip. So you can stay away from all the BS fake profiles...
ziggy-millam987@...
Jan 23, 2006 1:26 pm
1309
I know some friends already who have met a few nice honeys off of this kind of stuff (here is the place they use: http://www.browseprofiles.info/iulb , but...
ziggy-millam987@...
Jan 24, 2006 1:40 pm
1310
I'm using the DbConnectionBroker class from javaexchange.com to do db connection pooling. However, I'm finding some interesting results when coupled with...
Steve Swett
sswett@...
Feb 1, 2006 10:53 am
1311
By the way, I was using SConnection.detachAndClose() but then my connection wasn't being freed from the connection pool. ... From: Steve Swett...
Steve Swett
sswett@...
Feb 1, 2006 10:59 am
1312
Hi Friends; On behalf of javalive.com, I'd like to extend an invitation to javalive forums. This forum has been launched from India and I would request all you...
This four step guide will give you the foundation you always wanted. Learning the basics in handling stocks. This guide will help anyone, intrested in getting...
Hi Friends; On behalf of javalive.com, I'd like to extend an invitation to javalive forums. This forum has been launched from India and I would request all you...
Hi, when I flush a record which causes a constraint violation and then try to detach it, I get this exception: "???Cannot make dirty record optimisitic". Why...
Hi, I have another question. Why it is not possible to overwrite the toString() method in an inherited class from SRecordInstance? Is the toString() method...
I looked at the SimpleORM sources and found this comment for the toString() and toStringDefault() methods: * Default behavior of toString(). This was split out...
This four step guide will give you the foundation you always wanted. Learning the basics in handling stocks. This guide will help anyone, interested in getting...
I met my future wife here! hehe. And thought I should share it with any other men who are worried about ending up alone like I was. Check it out if you like...
diva-bensley736@...
Feb 24, 2006 3:28 pm
1320
Hi all, I have a general question on ORM usage. Do you use ORMs (simpleorm in our case) when dealing with mass batch jobs, or only in case of UI interaction ? ...
I second that position. A good SQL statement or stored proc can do marvels. On some projects, due to the skill of the people, an ORM may even bring lots of...
Hello - I wonder if we can have a hook to destroy temporary data that we may accumulate in our business rule class? Right now I'm overriding flush(), which...