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 846 - 875 of 1845   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
846
I'm sorta stuck here and not sure if its my compiler, my lack of experience in Java or something with the class SRecordInstance. Per the SRecordInstance class,...
jay_at_ottawa
Offline Send Email
Jun 2, 2004
1:23 pm
847
Leave getMeta() as it is an add another method for your static meta-getter, maybe: public static getRecordMeta() Or simply make the static meta field public...
Florian Fankhauser
f.fankhauser@...
Send Email
Jun 2, 2004
1:45 pm
848
Hah - too logical. Thanks. I like the idea of a public static getRecordMeta() method rather than making meta public. I guess I was just getting hung up on the...
jay_at_ottawa
Offline Send Email
Jun 2, 2004
1:59 pm
849
As I am coming up to speed with SimpleORM I am using MySQL as my DB. I have encountered a limitation with the supplied createTableSQL and would like some...
jay_at_ottawa
Offline Send Email
Jun 2, 2004
2:38 pm
850
... I think that doesn't matter. but i see no need in such a accessor method. Florian...
Florian Fankhauser
f.fankhauser@...
Send Email
Jun 3, 2004
6:39 am
851
I was really far into debt. Like Most I was in Financial dispair. I could not seem to get ahead no matter how hard I tried. Untill I found this place. ...
afheze145
Offline Send Email
Jun 6, 2004
11:21 pm
852
Perhaps this might sound odd at first, but what I am working on is a strategy to save and recall collections of objects - to compare lists over time for...
jay_at_ottawa
Offline Send Email
Jun 9, 2004
9:16 pm
853
You cannot change the GetMeta signature because it overrides a method that is needed internally. But you can write your own method, getMetaStatic. Regards, ...
Anthony & Melissa Ber...
berglas@...
Send Email
Jun 16, 2004
9:19 am
854
It seems odd that MySQL would demand an index, but it is useful when determining whether the referenced field can be deleted. SimpleORM's solution to indexes...
Anthony & Melissa Ber...
berglas@...
Send Email
Jun 16, 2004
9:19 am
855
OK, sounds reasonable, will be in the next release. (Which will hopefully not take forever...) Anthony...
Anthony & Melissa Ber...
berglas@...
Send Email
Jun 16, 2004
9:19 am
856
Have a look at SFIELD_METAS in SSimpleORMProperties. You would then have to search through and find the primary keys. Note that in general there can be more...
Anthony & Melissa Ber...
berglas@...
Send Email
Jun 16, 2004
9:20 am
857
Good point, we really do need a separate test. The work around is to see if the underlying column is null. The reference will add additional SFieldMeta...
Anthony & Melissa Ber...
berglas@...
Send Email
Jun 16, 2004
9:22 am
858
Here is what mine contains : sqlConnectionString = Data Source=www2.webnet.qc.ca;Initial Catalog=dev_cobalt_activitek;User ...
sylvainhamel
Offline Send Email
Jun 16, 2004
2:34 pm
859
Hi, may I ask some advice? I am doing a project in VB.NET (mainly) with SimpleORM. The SimpleORM library and the SimpleORM files are done in J#. Without...
Alexander Banthien
alexanderban...
Offline Send Email
Jun 17, 2004
5:18 pm
860
From what I understand at the moment it all boils down to translating the line public static final SRecordMeta meta = new SRecordMeta(MyClass.class,...
Alexander Banthien
alexanderban...
Offline Send Email
Jun 18, 2004
9:31 am
861
I'm not quite sure, Sylvain is the .net person. For the constants you will just have to qualify them with the interface name in vb. It works fine but is a bit...
Anthony & Melissa Ber...
berglas@...
Send Email
Jun 19, 2004
3:40 am
862
Hello Anthony, thanks for the response. That's what I thought. Also, there are more problems involved with updating detached records' references while they are...
Jan Tietze
jantietze
Offline Send Email
Jun 20, 2004
2:16 pm
863
I had really high interest rates on my home loan. I saved thousands of dollars on home payments. And you can too. Interest rates are as low as can be, And Yes...
jprohof24
Offline Send Email
Jun 22, 2004
12:40 pm
864
Get a Real College Diploma and never attend a Single class. These are 100% real College Diplomas. Get a degree from whatever School you want. Call this number...
jprohof299
Offline Send Email
Jun 26, 2004
1:05 am
865
Hi, I recently ran into a little problem. I propose a solution and a small hack to SimpleORM as solution. At the core it is about emulating the following SQL ...
Alexander Banthien
alexander@...
Send Email
Jun 29, 2004
9:44 am
866
Hi all, I just stumbled accros something and would like to hear I am on the right track. I reverse engineered my classes from the DB using SimpleORMGenerate....
Alexander Banthien
alexanderban...
Offline Send Email
Jun 29, 2004
1:38 pm
867
Hi all, I am currently improving on a system to store large blobs of data. The problem is that the size of the table (mysql table) has grown quite considerably...
Pierre Awaragi
awaragi
Offline Send Email
Jun 30, 2004
12:43 am
868
Hmm, My first thought is that it sounds like you are pushing MySQL very hard to deal with over 3G. You could try Postgresql if you want open source. But it...
Anthony & Melissa Ber...
berglas@...
Send Email
Jun 30, 2004
1:44 am
869
Hi Anthony, thanks for the quick reply, you suggestion has actually helped me quite a lot. The only problem I needed to solve was to be able to design...
Pierre Awaragi
awaragi
Offline Send Email
Jul 2, 2004
4:01 am
870
Should be OK, but look at the examples to see how to do it correctly. You do not want to end up with fields declared twice. Anthony...
Anthony & Melissa Ber...
berglas@...
Send Email
Jul 7, 2004
4:50 am
871
I think you've said it all well. The third approach would be a bit faster, but consider whether that is really important to you. Be very careful using...
Anthony & Melissa Ber...
berglas@...
Send Email
Jul 7, 2004
4:53 am
872
Hi all, Does anyone know why the nextGeneratedValue() method on SFieldMeta is called from SDriverOracle ? In my opinion this is not needed since oracle has...
Oliver Eiholzer
Oliver.Eiholzer@...
Send Email
Jul 8, 2004
9:50 am
873
Hello I usualy use this description and it works well with henerated keys ... package model; import simpleorm.core.*; import simpleorm.properties.*; public...
Linas Kavolius
lkavolius
Offline Send Email
Jul 9, 2004
7:43 am
874
Hi, I use version 01.12 and the problem only happens when you change the schema with ALTER SESSION SET CURRENT_SCHEMA x . The patch I have done on...
Oliver Eiholzer
Oliver.Eiholzer@...
Send Email
Jul 9, 2004
8:36 am
875
hi everybody, after getting into work with SimpleORM (MSSQL, ASP.NET using a DSN (this ODBC)) here are the 3 issues that are annoying our team (VB and Java ...
Alexander Banthien
alexanderban...
Offline Send Email
Jul 13, 2004
11:57 am
Messages 846 - 875 of 1845   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