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

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? 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 1712 - 1741 of 1845   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
1734
Hello Franck You have been busy! There are many things going on here. I would generally prefer that we do one thing at a time, check it in, review and think,...
anthony@...
aberglas
Offline Send Email
Mar 23, 2009
3:10 am
1735
Hello Franck, Now the big question -- is implementing full joins a good idea in the first place? I have only spent a couple of hours working through your join...
anthony@...
aberglas
Offline Send Email
Mar 23, 2009
3:15 am
1736
PS. Outer joins are all about returning nulls for missing records. I could not see anything in retrieve record to do that. Do we have a test case that...
anthony@...
aberglas
Offline Send Email
Mar 23, 2009
3:36 am
1737
Hi Anthony, I'll read carrefully your mails today... ... We have a test the other way around, JoinQueryTests.leftJoinTest(), that retrieve Depts plus their...
Franck Routier
routier_franck
Offline Send Email
Mar 23, 2009
8:50 am
1738
Hi Anthony, I have made quite a few modification following your remarks. See my comments below... ... Ok, I renamed Table to SAlias. I'll use SAlias for Table...
Franck Routier
routier_franck
Offline Send Email
Mar 23, 2009
3:13 pm
1739
Hi again, thanks for your comments ... I think this problem is handled by the rsindex part. See my other mail. ... Yep. ... I know that. I am also still...
Franck Routier
routier_franck
Offline Send Email
Mar 23, 2009
5:45 pm
1740
Hello Franck, I like your examples. So, it looks like the full joins with aliases are going in. The advantage of subselects is that aliases are easy -- no...
anthony@...
aberglas
Offline Send Email
Mar 24, 2009
4:25 am
1741
Hello Franck, I have reread the code and thought about the problem and I really cannot see why there is a Join class separate from the SAlias class. The data...
anthony@...
aberglas
Offline Send Email
Mar 24, 2009
4:27 am
Messages 1712 - 1741 of 1845   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