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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 1654 - 1683 of 1847   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1654
Hi, In your implementation (v.3.2), you have put for SDriverHSQLH2 protected OffsetStrategy getOffsetStrategy() { return OffsetStrategy.JDBC; } This causes an...
hkara1
Offline Send Email
Oct 3, 2008
12:35 pm
1655
Hi, Regarding the errors I got with Enum(s), it is because I ran the tests on a build I got from svn (rev806). In this revision, "writeFieldValue" was not...
hkara1
Offline Send Email
Oct 3, 2008
12:39 pm
1656
Hi, I found the timeout parameter for locks, so all the tests run correctly now. The timeout can be set by adding the parameter to the jdbc url, or by issuing...
hkara1
Offline Send Email
Oct 3, 2008
12:43 pm
1657
Hello Harry, Please do check out from subversion, not the zipped versions. I only create the latter occasionally, and you are supporting a new database which...
Anthony Berglas
aberglas
Offline Send Email
Oct 4, 2008
12:23 am
1658
Hello Anthony, I can only check out from subversion at home, because at work our firewall does not allow subversion connections. And I come home late, with...
hkara1
Offline Send Email
Oct 7, 2008
8:51 am
1659
Hello Harry, Subversion works on normal ports (80 and 443). I have used the https to access it from behind nasty corporate firewalls. So unless they ...
Anthony Berglas
aberglas
Offline Send Email
Oct 7, 2008
11:32 am
1660
Now that v3 is stable I have posted an article to the server side which appears to have attracted some interest. ...
Anthony Berglas
aberglas
Offline Send Email
Oct 8, 2008
12:43 am
1661
I'm getting a compilation error when I try to compile SimpleORM using Java 5. The error is SQueryExecute line 100: "The method copyOf(SfieldScalar[], int) is...
Bruce Alspaugh
alspaughb
Offline Send Email
Oct 9, 2008
6:29 pm
1662
I'm getting a lot of unused import warnings when I look at the source code in Eclipse. Can they be removed? Here's a list: SDataSet.java: import...
Bruce Alspaugh
alspaughb
Offline Send Email
Oct 9, 2008
6:47 pm
1663
I have just released version 3.3, which fixes the Java 1.6 dependency in the join processing. Big oops, now always test with 1.5 Also cleaned up imports from...
Anthony Berglas
aberglas
Offline Send Email
Oct 10, 2008
5:58 am
1664
Hello , I have usecase where I need to check if entity was changed or not. Entity should report isDirty as false also if the same values/references was set on...
tibor_ml
Offline Send Email
Oct 12, 2008
1:23 pm
1665
Hello Tibor, I have added your changes to the code. They are a slight improvement but they do not fix your obscure but valid bug, nor would I expect them to. ...
Anthony Berglas
aberglas
Offline Send Email
Oct 13, 2008
2:58 am
1666
I was working against branches/simpleorm-3.2, not against trunk. I did fresh checkout of 3.2 and tried my test again. I don't know what I screwed up before,...
tibor_ml
Offline Send Email
Oct 14, 2008
12:39 pm
1667
I am confused as to what exactly you have been testing. I think the case you have below has always worked. But I have gone in and added some extra tests along...
Anthony Berglas
aberglas
Offline Send Email
Oct 15, 2008
2:01 am
1668
I'm new to SimpleORM and I'm trying to figure out how to express a query like this... SELECT * FROM CUSTOMER WHERE NAME LIKE 'SM%' OR NAME = 'Jones' FYI, I...
emorning
Offline Send Email
Oct 19, 2008
11:56 pm
1669
For now you just say new SQuery...rawPredicate("NAME LIKE '?' OR NAME = '?", "SM%", "Jones")... Ie raw SQL fragment. The goal of SQuery is to cover the 90% of...
Anthony & Melissa Ber...
berglas@...
Send Email
Oct 20, 2008
7:28 am
1670
For now you just say new SQuery...rawPredicate("NAME LIKE '?' OR NAME = '?", "SM%", "Jones")... Ie raw SQL fragment. The goal of SQuery is to cover the 90% of...
Anthony Berglas
aberglas
Offline Send Email
Oct 20, 2008
7:29 am
1671
Hello there. I used SimpleORM for some projects a few years ago, but I really wanted to use POJOs, primarily because of the sheer volume of objects (and...
John Abraham
jeabraham
Offline Send Email
Oct 22, 2008
4:36 pm
1672
... Oops, mistype. Obviously I'm asking about creating Plain Old Java Objects from SimpleORM objects, not from Hibernate objects. I've given up on Hibernate....
jeabraham
Offline Send Email
Oct 22, 2008
8:17 pm
1673
Hello John, It is rarely a good idea to use POJOs. If you implement get and set methods then the simpleORM records will look just like POJOs externally. ...
Anthony & Melissa Ber...
berglas@...
Send Email
Oct 24, 2008
7:55 am
1674
Contributions are always welcome. But they need to be clean, and most importantly they need to have a test case. (Maybe by updating the existing test cases.)...
Anthony Berglas
aberglas
Offline Send Email
Oct 24, 2008
8:06 am
1675
Thanks for the explanation and example. You are right, in terms of CPU cycles POJOs would be slower in my system. So really it comes down to memory....
John Abraham
jeabraham
Offline Send Email
Oct 24, 2008
2:29 pm
1676
... Here is my addition to SRecordMeta, for the old version of SimpleORM. I haven't ported it to (or tested it with) the new version. As you can see, it's...
John Abraham
jeabraham
Offline Send Email
Oct 24, 2008
4:58 pm
1677
... 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
Oct 24, 2008
11:09 pm
1678
I think that SFieldScalar.isPrimaryKey will do what you want, without a search. (keySFieldMetas is just a cache.) Regards, Anthony ... Dr Anthony Berglas,...
Anthony Berglas
aberglas
Offline Send Email
Oct 25, 2008
6:37 am
1679
... Thanks, I'll check it out when I migrate to the new version. -- John...
John Abraham
jeabraham
Offline Send Email
Oct 25, 2008
2:20 pm
1680
For master/slave replication I strongly suggest that you do that at the database level. Oracle Data Guard, PostgreSQL does it ...
Anthony Berglas
aberglas
Offline Send Email
Oct 26, 2008
1:44 am
1681
Is there no notion of a column's default value is SimpleORM? For example, when I call SDataSet.create() or SSessionJdbc.create(), I'd like the SRecordInstance...
cg_ia
Offline Send Email
Nov 12, 2008
12:18 am
1682
Hi, you're not missing anything, and a default value would indeed be a valuable feature. I think we could think of it, to find where it would best fit : ...
Franck Routier
routier_franck
Offline Send Email
Nov 12, 2008
8:23 am
1683
Hmm. Defaulting can mean a number of things. 1. Values to be set to the fields when a record is initially created. 2. Values to be written to the database...
Anthony Berglas
aberglas
Offline Send Email
Nov 13, 2008
12:13 am
Messages 1654 - 1683 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