Search the web
Sign In
New User? Sign Up
SimpleORM
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1704 - 1733 of 1847   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1704
Hello, Your code looks generally OK. But there is a lot to read through without some diagnostics. When you say it "does not work" what does it actually do?...
Anthony Berglas
aberglas
Offline Send Email
Jan 12, 2009
12:22 am
1705
You found a bug. The bug is that no max size is specified for that VARCHAR. Some dbs accept this with sensible defaults (no limit) others with stupid defaults...
Anthony & Melissa Ber...
berglas@...
Send Email
Jan 12, 2009
12:59 am
1706
Hello, I'm getting errors trying to deserialize some SimpleORM objects. (using serialization is necessary due to the the way I am integrating SimpleORM with...
gould@...
cg_ia
Offline Send Email
Jan 22, 2009
3:32 pm
1707
Hi, I have implemented the setInitialValue that was discussed on the list a few week ago. An example can be found in examples.Department. Usage is...
Franck Routier
routier_franck
Offline Send Email
Jan 26, 2009
9:01 am
1708
Hello Franck, I had a very brief look through the change log. What happens if a record is created, with initial value on column C that is not later set. C is...
berglas@...
Send Email
Jan 26, 2009
11:25 pm
1709
Hi Anthony, Thanks for reviewing my changes. I have added tests (in BasicTests) to test the various cases you mention. Everything seems to works fine... ... C...
Franck Routier
routier_franck
Offline Send Email
Jan 27, 2009
4:57 pm
1710
Hello Carl, I did not write the serialization part. Looks like it needs a bit more thought. The page you refer to is rather unintelligible, but the idea that...
berglas@...
Send Email
Jan 29, 2009
12:13 am
1711
Had a bit more of a look and think. The first question is whether the meta data should be serialized at all. Class info is not serialized for POJOs. In any...
anthony@...
aberglas
Offline Send Email
Jan 29, 2009
1:20 am
1712
Hello All, I just removed "implements Serializable" from both SRecordMeta and SFieldMeta. As expected, all the unit tests passed. I strongly suspect that we...
anthony@...
aberglas
Offline Send Email
Feb 10, 2009
6:24 am
1713
Hello, I just find a bug in the method removeRecord from the SDataSet object. It seems that each SRecordInstance in the dataset have a updateListIndex ...
damien hostin
damien.hostin@...
Send Email
Feb 16, 2009
10:31 am
1714
Hello Damien, Yes, I think that you have found a bug. It will only arise in practice if you actually call removeRecord. Normal operations such as Flush and...
anthony@...
aberglas
Offline Send Email
Feb 16, 2009
10:59 pm
1715
I've just implemented the fix with setting null the removed record in dirty list. The only thing it implies is to check if records obtained from ...
damien hostin
damien.hostin@...
Send Email
Feb 17, 2009
2:27 pm
1716
I removed seriability on the meta, and it doesn't break our application. But we don't directly use serialization. Last year (or even before), a colleague try...
damien hostin
damien.hostin@...
Send Email
Feb 17, 2009
2:59 pm
1717
Hello Damien, The checks "if records obtained from SDataSet.getDirtyRecords are not null" should already be there, but please check the checks. Note that...
anthony@...
aberglas
Offline Send Email
Feb 19, 2009
12:13 am
1718
Hello Damien, I would doubt that Tomcat tries to serialize session rather than just leaving it in memory, at least in the normal case. But it should work if...
berglas@...
Send Email
Feb 19, 2009
12:19 am
1719
... Dr Anthony Berglas, anthony@... Mobile: +61 4 4838 8874 Just because it is possible to push twigs along the ground with ones nose does not...
anthony@...
aberglas
Offline Send Email
Feb 19, 2009
12:19 am
1720
Hello, SDataSet.removeRecord now call instance.setDirty(false), and it works fine. I don't really see why it would be interesting to move removeRecord to ...
damien hostin
damien.hostin@...
Send Email
Feb 20, 2009
10:57 am
1721
Hello, Actually, we now get error when tomcat tries to serialize the sessions. Before modifying seriability, we got error when deserializing. But I must check...
damien hostin
damien.hostin@...
Send Email
Feb 20, 2009
11:06 am
1722
Thanks for that. I cleaned it up a little. Removed SRecordInstant.dirty which is now redundant. removeRecord is now just public void...
anthony@...
aberglas
Offline Send Email
Feb 21, 2009
3:28 am
1723
Of course, cannot remove SRecordInstant.dirty because of deprecated instances detached from DataSets. Reverted + comment! Can we get rid of this, or are you...
anthony@...
aberglas
Offline Send Email
Feb 21, 2009
4:20 am
1724
Hello, I check our code, we aren't using SDataSet.attach / createDetachedInstance anymore. But isDirty() on SRecordInstance is still used. Even if in some case...
damien hostin
damien.hostin@...
Send Email
Feb 23, 2009
2:23 pm
1725
Good to hear that your problems are resolved. I have removed the deprecated attach(record) and the associated .dirty flag. They could potentially be useful in...
anthony@...
aberglas
Offline Send Email
Feb 23, 2009
11:32 pm
1726
It seems to work... ! Damien ... -- HOSTIN Damien - Equipe R&D Tel:+33(0)4 63 05 95 40 Société Axège 23 rue Saint Simon 63000 Clermont Ferrand www.axege.com...
damien hostin
damien.hostin@...
Send Email
Feb 25, 2009
5:11 pm
1727
I need to be able to duplicate a record, assign it new key values using the generator, then modify a few of the other (non-key) fields. I'm updating to version...
John Abraham
jeabraham
Offline Send Email
Mar 3, 2009
3:02 am
1728
I know we all hate XML files, and after my brief interlude with Hibernate I understand why. But I do have a need to be able to specify some column names at run...
jeabraham
Offline Send Email
Mar 4, 2009
5:52 am
1729
Welcome back. Is SFieldScalar.isPrimaryKey what you want? (SimpleORM 3.0 is more focused on columns than references, which simplifies it.) In general, all...
berglas@...
Send Email
Mar 4, 2009
7:34 am
1730
This is exactly the sort of thing that is easy to do with SimpleOrm, but not reflective tools like Hibernate. SubTypeTest provides an example of the sort of...
berglas@...
Send Email
Mar 4, 2009
7:38 am
1731
Hello All, I have added a new package, SimpleServlets, which can be checked out from subverson. From the web page:- SimpleServlets A very simple environment...
anthony@...
aberglas
Offline Send Email
Mar 5, 2009
1:34 am
1732
As I mentioned, I'm moving to SimpleORM 3 from SimpleORM 2 via Hibernate. I'm having trouble with the idea of writing an implementation of...
jeabraham
Offline Send Email
Mar 13, 2009
6:33 pm
1733
The reason that SimpleORM takes a DataSource parameter instead of a JDBC Connection was so that it could open a second connection as a way to generate sequence...
anthony@...
aberglas
Offline Send Email
Mar 14, 2009
1:55 am
Messages 1704 - 1733 of 1847   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help