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 802 - 831 of 1847   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
802
Hello all, Sylvain in particular, after reading about SimpleORM I would now like to try it out. I am historically a Java person but for my project am now...
Alexander Banthien
alexander@...
Send Email
Apr 3, 2004
10:14 am
803
Hi Alexander, First let me say that the transition from Java code to .NET code requires you to comment out ~4 places in the code else it will not work. This is...
sylvainhamel
Offline Send Email
Apr 5, 2004
1:33 pm
804
Hi Sylvain, thanks for the support. Even before your reply I had managed to connect using the jdbc:odbc driver that comes with the .NET framework. (See code ...
Alexander Banthien
alexander@...
Send Email
Apr 5, 2004
4:29 pm
805
We are using simpleorm in a 3 year/person project. We believe enough in our product that we invested over 100K in this library. Cheap cost was never a deciding...
sylvainhamel
Offline Send Email
Apr 5, 2004
9:48 pm
806
Sorry, forgot to say the adojdbc bridge assembly is in the "files" section. Just add it to your references and use it like any JDBC drivers. ... enough ... ...
sylvainhamel
Offline Send Email
Apr 6, 2004
1:28 am
807
Sorry to keep on bugging you :-) 1) what do you mean by "files section"? where I should look for the adojdbc bridge code? can you point me to a place where I...
Alexander Banthien
alexander@...
Send Email
Apr 7, 2004
2:24 pm
808
... No problem, I am happy to help. I have fallen deeply in love with this framework for its simplicity, its efficiency and its elegance. My only problem is...
sylvainhamel
Offline Send Email
Apr 8, 2004
5:57 am
809
Files section is on the files section of the yahoo group /Phil ... From: "Alexander Banthien" <alexander@...> To: <SimpleORM@yahoogroups.com> Sent:...
Philippe Back (High O...
phil@...
Send Email
Apr 8, 2004
12:01 pm
810
Hi all, can anyone give me a hint on how to get around this: I am trying to imoplement my ORM-classes in C#. Everything looks quite similar and compiles fine...
Alexander Banthien
alexanderban...
Offline Send Email
Apr 21, 2004
8:13 am
811
C#, .NET ... thats my cue! ;-) this is a problem with .NET. You can not define constants in interfaces. When you want to use properties/constants, prefix them ...
sylvainhamel
Offline Send Email
Apr 21, 2004
4:29 pm
812
Hi! I have a class 'User' with Multicolunm PK: 1. String 'UserID' 2. Refernce to a 'Company' object. A Simple class with a String-Field 'COMPANY_ID' as PK. ...
Florian Fankhauser
f.fankhauser@...
Send Email
Apr 22, 2004
10:35 am
813
I have a client/server application where the GUI is running on a thick (Java) client. I would like to create an SRecordInstance object on the client-side based...
Bartek Muszynski
bartek_muszynski@...
Send Email
Apr 22, 2004
10:42 pm
814
hmm... Rawclause is definitely an option but the only other way I see it is to fetch all users of this compagny and then to fetch all orders of all these...
sylvainhamel
Offline Send Email
Apr 23, 2004
2:42 pm
815
We are doing some development with SimpleORM ourselves, and are bound to need this kind of 'join' capability. From our point of view, this is the biggest area...
Bartek Muszynski
bartek_muszynski@...
Send Email
Apr 24, 2004
2:44 am
816
Thanks Sylvain. Simpleorm's query language is sql, so i prefer the rawclause. Florian...
Florian Fankhauser
f.fankhauser@...
Send Email
Apr 26, 2004
10:48 am
817
I have a record which I want to change its primary key. How do I do this without deleting the record and inserting a new record with the modified primary key?...
Mike
mikef_1981
Offline Send Email
Apr 27, 2004
4:30 pm
818
The thing is... that's the point about SimpleORM. Do it with a raw clause. Forget about complex languages like JDO. In the end just fall back to SQL for...
sylvainhamel
Offline Send Email
Apr 27, 2004
6:51 pm
819
I would do a raw update query. <moralizing>You do know this is a definite no no? Sometimes it is usefull for example when you update your database schema. Too...
sylvainhamel
Offline Send Email
Apr 27, 2004
7:01 pm
820
You don't! Not using any ORM. The primary key defines the very identity of a record, and updating it would cause havoc. If you have a special need to do...
Anthony & Melissa Ber...
berglas@...
Send Email
Apr 27, 2004
11:22 pm
821
Hi, I have read SimpleORM white paper, and seen that I have to maintain my own collection for child objects by hand. My presentation layer relies on this...
Franck Routier
jn_dupont
Offline Send Email
May 3, 2004
9:42 am
822
Bonjour Franck, Not sure if I understand you correctly but you want to get all objects that reference another row in a related table? If yes do it like this : ...
sylvainhamel
Offline Send Email
May 3, 2004
7:02 pm
823
Bonjour, ... Quite true. But in fact I really want to get all objects that reference several rows in a related table (several parents and their respective ...
Franck Routier
jn_dupont
Offline Send Email
May 4, 2004
8:06 am
824
Hi Franck, I won't call myself experienced, but I think I can help: read inline comments ... no problems here ... to generate the "in-list" for the in (....)...
Alexander Banthien
alexanderban...
Offline Send Email
May 5, 2004
6:54 am
825
Again I want to make sure since I find this so simple that I might be missing something. Instead of your abstract names let me provide a more concrete scenario...
sylvainhamel
Offline Send Email
May 6, 2004
4:24 pm
826
DISCLAIMER this code has not been tested I just saw some flagrant syntax errors in it. Should be easy to correct. VB.NET is starting to corrupt me! ;-) ... be ...
sylvainhamel
Offline Send Email
May 6, 2004
4:30 pm
827
... No, no, this is really simple indeed. I just want to retrieve a bunch of "invoices", get their "invoiceDetails" in Collections contained by each invoice,...
franck.routier@...
jn_dupont
Offline Send Email
May 7, 2004
8:43 am
828
... queries ... invoiceDetails ... If the invoice objects are already in cache no query will be done in database. If they arent a query will have to be made...
sylvainhamel
Offline Send Email
May 7, 2004
3:25 pm
829
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the SimpleORM group. File :...
SimpleORM@yahoogroups...
Send Email
May 7, 2004
6:20 pm
830
... This is sort of deliberate. Join semantics are a little weird, IMHO. Logically you create a huge cross product, and then select a tiny subset. It is easy...
Anthony & Melissa Ber...
berglas@...
Send Email
May 13, 2004
9:15 am
831
Hello Florian, Um, this sort of thing is supposed to work. If you look at the code for eq you'll see that it calls eqReference to recur through the keys. Are...
Anthony & Melissa Ber...
berglas@...
Send Email
May 13, 2004
9:20 am
Messages 802 - 831 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