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

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 796 - 825 of 1847   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
796
Hello, I'm new to this forum and I started to evaluate sORM. I like the concept and started to experiment (however, I do not like everything, but everybody has...
Carlo
carlo_cg
Offline Send Email
Mar 2, 2004
1:47 pm
797
Yep, like every other ORM (I think) SimpleORM only supports one Primary key. If you are using it for linking, you had better pick the surrogate key. You need...
Anthony & Melissa Ber...
berglas@...
Send Email
Mar 3, 2004
9:52 am
798
Thanks for the reply, I was afraid that it was have implemented this way. Actually, the surrogates speed it up by around 80%-120%. Our natural keys can be up...
Carlo
carlo_cg
Offline Send Email
Mar 3, 2004
1:21 pm
799
Hello Joseph, Thanks for the code, I'll look at it. The licence is actually less restrictive than GPL, see the licence.txt file. But we do appreciate...
Anthony & Melissa Ber...
berglas@...
Send Email
Mar 25, 2004
11:00 am
800
I have the following data model: CREATE TABLE CS_ROLES( ROLE_ID NUMERIC(18,0) NOT NULL, NAME VARCHAR(10) NOT NULL, DESCRIPTION VARCHAR(50) NOT...
greenwood48430
Offline Send Email
Mar 26, 2004
1:36 pm
801
Hello Bartek, Your fix looks good from my initial read. I have added it to my list of things to do. Please always post these issues to the mailing list so...
Anthony & Melissa Ber...
berglas@...
Send Email
Mar 28, 2004
6:57 am
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
Messages 796 - 825 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