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 1687 - 1716 of 1847   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1687
Hello Martin, The generator had not been upgraded to 3.0, so your work is much appreciated. meta.findOrCreate is now SSessionJDBC.findOrCreate and friends....
Anthony Berglas
aberglas
Offline Send Email
Dec 2, 2008
12:05 am
1688
Hi, I have found that if you try to create a record for a table that only has one column, you get an error (assertNewRow() fails). Has someone else experienced...
Rickard Nilsson
rickynils
Offline Send Email
Dec 2, 2008
7:20 am
1689
SimpleORM traditionally did not allow key only tables at all, but Franck added that in. Will have a look at your single column example. But it does seem very...
Anthony & Melissa Ber...
berglas@...
Send Email
Dec 3, 2008
3:10 am
1690
It is easy to create a generic method that will populate POJOs, see the mailing list http://tech.groups.yahoo.com/group/SimpleORM/message/1675 Would not be...
Anthony Berglas
aberglas
Offline Send Email
Dec 3, 2008
5:18 am
1691
Hello Martin, I have checked in your code. Made minor changes to build, move example to test. Test task designed to run with simpleorm tests. Compiles, but I...
Anthony Berglas
aberglas
Offline Send Email
Dec 9, 2008
11:11 am
1692
Hi, I will check out fresh and work from that from now on. I already have a sourceforge account, my username is Holiman.   Thanks, /Martin ... -- Martin Holst...
Martin Holst Swende
holimanholiman
Offline Send Email
Dec 9, 2008
11:32 am
1693
Is there any way to do case insensitive string comparison with SQuery without resorting to rawPredicate? If not, it seems that all the drivers would need to...
gould@...
cg_ia
Offline Send Email
Dec 9, 2008
8:01 pm
1694
No. To keep it simple, SQuery is only designed to cover the 80% of easy, common cases. The others can be dealt with using rawPredicate as you mention. SQL 92...
Anthony & Melissa Ber...
berglas@...
Send Email
Dec 10, 2008
12:24 am
1695
If you check out the trunk of simpleorm, run ant demo cd extras\simpleormgenerate ant test you will see the generator run on hsql. Could do with a bit more...
Anthony Berglas
aberglas
Offline Send Email
Dec 10, 2008
4:55 am
1696
Hi, The tables I was using were MySQL tables with auto-increment primary keys. As I have gathered now from earlier discussions, that does not work very well,...
Martin Holst Swende
holimanholiman
Offline Send Email
Dec 11, 2008
10:20 am
1697
Hi all, I commited a patch that will remove a record from the dataset cache if the record has been deleted, once the deletion has been flushed. This allows to...
Franck Routier
routier_franck
Offline Send Email
Dec 11, 2008
5:33 pm
1698
Hello Philippe, I have some slides that I prepared for QJUG a while ago. I'll tidy them up and send them to you. (They will be checked in under webset/sorm.) ...
Anthony & Melissa Ber...
berglas@...
Send Email
Dec 12, 2008
7:24 am
1699
Hello Martin, Good point about "auto-increment" keys that are only generated at INSERT time. Normally default auto-increment keys are only generated if no...
Anthony Berglas
aberglas
Offline Send Email
Dec 14, 2008
12:44 am
1700
After a bit of stuffing about I have added the INSERT IDENTITY functionality for HSQLDB. Have also cleaned it up a bit. It is tested by GeneratorTest. To...
Anthony Berglas
aberglas
Offline Send Email
Dec 15, 2008
6:33 am
1701
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 Berglas
aberglas
Offline Send Email
Dec 16, 2008
10:19 am
1702
Hi, I am a newbie with simpleORM. the examples provided with the distribution and the white paper on the site (simpleorm.org) are too complex for me. I can't...
abdessamad ajnan
othersper17
Offline Send Email
Dec 27, 2008
11:31 am
1703
SFieldBooleanChar's defaultSqlDataType() method returns "VARCHAR", which doesn't work with MySQL when creating a table. I'm using this as a workaround: class...
fdaoud00
Offline Send Email
Dec 29, 2008
5:48 am
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
Messages 1687 - 1716 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