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

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 1818 - 1847 of 1847   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1818
Hello Andre, Yes, should read " to double ". Fixed in subversion. You are reading carefully to find that! Note that exceptions generally include useful...
anthony@...
aberglas
Offline Send Email
Sep 14, 2009
7:45 am
1819
Hello to you all. Just an enquiry. About two months ago I had checked out a version of SimpleORM which had a class called SQueryAggregate. Subsequent checkouts...
Abel Salama Birya
asbirya
Offline Send Email
Sep 15, 2009
12:19 pm
1820
Hi, SQueryAggregate has been renamed into SQueryTransient in latest "official" release. So the API is slightly broken, but the functionality remains the same....
Franck Routier
routier_franck
Offline Send Email
Sep 15, 2009
1:37 pm
1821
Hello Abel, New class is SQueryTransient, and there is a section in the white paper on it. http://simpleorm.org/sorm/whitepaper.html#mozTocId436695 (That is...
berglas@...
Send Email
Sep 15, 2009
10:31 pm
1822
Hi. Have you considered allowing 1 SimpleORM driver to handle multiple JDBC drivers? Instead of using driverName and comparing the returned string to choose a...
Ryan Boder
icanoop
Offline Send Email
Sep 27, 2009
3:00 am
1823
Hello All, I have just been doing some .Net work using LINQ. Linq is Microsoft's new very clever ORM. It does some amazing things, and most of the time what...
anthony@...
aberglas
Offline Send Email
Sep 27, 2009
3:59 am
1824
Hi, I'm trying to get identity generation on insert working with Derby. I have the driver set up so it creates the table with GENERATED BY DEFAULT AS IDENTITY...
Ryan Boder
icanoop
Offline Send Email
Sep 27, 2009
5:27 am
1825
Hello Ryan, Could do. But for now just create subclasses for the different variants. I suggest just use a static class for these trivial bits. There may...
anthony@...
aberglas
Offline Send Email
Sep 28, 2009
7:12 am
1826
PS. You will also probably need to change SDriver.retrieveInsertedKey Which is called by theGenerator.postUpdateWithGeneratedKey(session, instance); See HSQL....
anthony@...
aberglas
Offline Send Email
Sep 28, 2009
7:15 am
1827
Hi Anthony, I read the code and I think this will require the flush method to work a differently for generated columns. It currently passes the NULL values for...
Ryan Boder
icanoop
Offline Send Email
Sep 29, 2009
8:56 am
1828
Yes, you are right, more to do. Not important, but I think that I like to see the keyword DEFAULT generated -- makes it explicit. You could do what I...
anthony@...
aberglas
Offline Send Email
Sep 29, 2009
10:13 am
1829
Hi, I am making heavy use of a special UserProperty on my fields to store the field comments. On the one side, field comments act as a default field label in...
Franck Routier
routier_franck
Offline Send Email
Oct 1, 2009
9:51 am
1830
Glad to see the meta data being used. That was an original point of SimpleORM. There are actually several "Comments". 1. PROMPT, SHORT_PROMPT: Default field...
berglas@...
Send Email
Oct 1, 2009
10:53 am
1831
Hi Anthony, I'm working on a production level project on a deadline, not experimental. It occurred to me that I can't afford to deal with Derby not being...
Ryan Boder
icanoop
Offline Send Email
Oct 1, 2009
6:50 pm
1832
Le jeudi 01 octobre 2009 à 20:32 +1000, berglas@... ... In fact userProperties is a Map<Object, Object>, so the key can really be...
Franck Routier
routier_franck
Offline Send Email
Oct 1, 2009
7:37 pm
1833
... Hmm, I think you just made a good argument for not using the Enum! Maybe an Enum.toString(). Maybe the Map should be <String, Object>? Or maybe a...
berglas@...
Send Email
Oct 2, 2009
2:13 am
1834
Hello Ryan, here, we use Simpleorm in production environments on several client installations with both Postgresql and Oracle. No especially embedded nor...
Franck Routier
routier_franck
Offline Send Email
Oct 2, 2009
12:51 pm
1835
Hello All, I have added support for JavaDB -- long overdue. The Insert Identity code now works. One outstanding issue is how to convert BYTES to JavaDB....
anthony@...
aberglas
Offline Send Email
Oct 5, 2009
3:09 am
1836
Hi Anthony, ... Well, I don't get you here... You seem to assume everybody expects that keys in Maps are String, and that no one will notice that...
Franck Routier
routier_franck
Offline Send Email
Oct 5, 2009
10:13 am
1837
Hello Franck I am simply concerned that when you do toString on an Enum you do not see the type. Just the name. Leading to horrible bugs. Why is this PROMPT...
berglas@...
Send Email
Oct 5, 2009
11:07 pm
1838
I tried to post the message below on Oct 30 but I sent it from the wrong address, so it didn't get through. Since then, we haven't had any ideas on how to...
jabraham@...
jeabraham
Offline Send Email
Nov 3, 2009
4:56 pm
1839
This is just a note to let you know that this multi-threaded design did work. All indications are that this *should* be much faster, but for some reason it...
jabraham@...
jeabraham
Offline Send Email
Nov 7, 2009
12:15 am
1840
Hello John, THREADING Your threading approach is OK. In normal operation, you would have one session per thread, one thread per session. This can be...
anthony@...
aberglas
Offline Send Email
Nov 7, 2009
2:19 am
1841
Thanks for the feedback! Right now the database is responsible for basically 100% of the run time because the main thread (which is actually querying the...
John Abraham
jeabraham
Offline Send Email
Nov 7, 2009
3:19 am
1842
Hello all. I have been using SimpleORM for a few months now and it has been a great help especially for backend data migration scripts. I shall be writing my...
abel birya
asbirya
Offline Send Email
Nov 7, 2009
3:32 am
1843
SimpleORM checks for common threading errors such as trying to use the same *Connection* from two threads. It is quite OK and normal to have multiple threads...
anthony@...
aberglas
Offline Send Email
Nov 8, 2009
1:20 am
1844
You can get it from the source forge repository. However, as the author I do not really recommend it, as it heavily uses JSPs and JSPs are just awful...
anthony@...
aberglas
Offline Send Email
Nov 8, 2009
1:20 am
1845
If you have non-trivial queries for MSSQL try UPDATE STATISTICS on the main tables. I have found that sometimes it just looses track and starts running slowly...
anthony@...
aberglas
Offline Send Email
Nov 8, 2009
1:22 am
1846
Hello Anthony, Thanks for the reply and I have to say I do understand exactly what you mean. What I am really concerned with is whether I may have to write ...
abel birya
asbirya
Offline Send Email
Nov 9, 2009
7:35 am
1847
Not normally necessary. And locking is about more than Synchronized. Unlike most software, SimpleORM takes care to try to fail fast if you have threading...
anthony@...
aberglas
Offline Send Email
Nov 9, 2009
8:03 am
Messages 1818 - 1847 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