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 1635 - 1664 of 1847   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1635
Hello Harry, Good point, I fixed isEmpty, but to the code below (avoids creating the trimmed object). You mentioned "Oracle Locking", what are you doing with...
Anthony Berglas
aberglas
Offline Send Email
Sep 8, 2008
10:35 am
1636
Hi Anthony, While I was looking at the modifications we made, I was just wondering if we are not doing a mistake by trimming the value to look if it's empty. ...
hkara1
Offline Send Email
Sep 8, 2008
4:21 pm
1637
Hi Anthony, About your second question : I don't use locking at all; I always have let Oracle handle it. After all, this is one reason we spent all the clams...
hkara1
Offline Send Email
Sep 8, 2008
4:22 pm
1638
... 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
Sep 9, 2008
12:18 am
1639
SimpleORM has changed in version 3. * By default does not add FOR UPDATE. * Always uses optimistic checks as well as any database locks. Be aware that Oracle...
Anthony Berglas
aberglas
Offline Send Email
Sep 9, 2008
12:23 am
1640
Hello Franck, I agree that any QBE interface in SimpleORM would want to be a separate module, used along the lines that you suggest. One hard part about QBEs...
Anthony Berglas
aberglas
Offline Send Email
Sep 11, 2008
8:30 am
1641
Only primary keys are specified in meta data. Other indexes can be created using raw CREATE INDEX statements. The reason for this is that it is a bit messy to...
Anthony Berglas
aberglas
Offline Send Email
Sep 23, 2008
12:22 am
1642
Has already been fixed in Subversion, I'll cut a new version soon. Just replace the code with length=0 for a quick fix for now. ... Dr Anthony Berglas,...
Anthony Berglas
aberglas
Offline Send Email
Sep 23, 2008
12:24 am
1643
Have not done this yet. But if you copy the HSQL driver it should only require trivial changes. SimpleORM minimizes database dependent code. If you do this...
Anthony Berglas
aberglas
Offline Send Email
Sep 23, 2008
12:27 am
1644
Hello Bruce, You have a choice as to whether to have long transactions during user think time that use database locks, or short transactions that use ...
Anthony Berglas
aberglas
Offline Send Email
Sep 23, 2008
12:46 am
1645
Hi, I've been using this just as you described, and it works fine. Here is the class I use : package org.hmn.jrsd.demo; import simpleorm.drivers.SDriverHSQL; ...
hkara1
Offline Send Email
Sep 23, 2008
9:25 am
1646
Eclipse gives me lots of compiler warnings when I open the source code. They include unused imports, references to generic types that should be parameterized,...
Bruce Alspaugh
alspaughb
Offline Send Email
Sep 23, 2008
3:23 pm
1647
Hello Harry, Thanks for that. But before I include your code, what about the other things in SDriverHSQL? In particular, is the support for SEQUENCES the same...
Anthony Berglas
aberglas
Offline Send Email
Sep 25, 2008
9:39 am
1648
Oops, I see what you have done, just extended HSQL Driver. I'll refactor a bit and add it. Please confirm the unit tests pass. Anthony ... Dr Anthony Berglas,...
Anthony Berglas
aberglas
Offline Send Email
Sep 25, 2008
9:42 am
1649
Hello Bruce, 1. Descritpive renamed. Thanks. 2. The idea was that the field name need not always be the same as the sql column name. But the code does not...
Anthony Berglas
aberglas
Offline Send Email
Sep 25, 2008
10:07 am
1650
I've just put this up on the web site. Includes Franck's fixes, plus Descritpive, H2. http://www.simpleorm.org/downloads/ Anthony Dr Anthony Berglas,...
Anthony Berglas
aberglas
Offline Send Email
Sep 26, 2008
5:37 am
1651
... 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
Sep 29, 2008
11:21 pm
1652
Hi, the unit tests are OK, except for the long transaction test that fails with a lock timeout (this should not be too serious). BUT READ ON ! However, the...
hkara1
Offline Send Email
Sep 30, 2008
5:27 pm
1653
Hello Harry, Thanks for your work on H2, which looks quite good. I'm thinking we should probably make it the default db in the next release of SimpleORM. The...
Anthony Berglas
aberglas
Offline Send Email
Oct 1, 2008
5:17 am
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
Messages 1635 - 1664 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