... Could you please itemize what problems you found? Thanks, Anthony...
Melissa & Anthony Ber...
berglas@...
Jun 2, 2003 2:44 am
463
Comments below:- ... More importantly, change the examples to use a specific findOrCreate. ... Yes, just the foreign key name. The field name defaults to the ...
Melissa & Anthony Ber...
berglas@...
Jun 2, 2003 2:44 am
464
Here are some that I found. A lot of these are because of ADO.NET vs JDBC conversion. To be expected but still somewhat functionnally different. Probably...
Hello, I'm having some problems with using SimpleORM in a multi-threaded app (GLUE-based web service) - I get these exceptions: ...
Vlad Jebelev
vlad@...
Jun 2, 2003 7:15 pm
466
Do not name your connection, use null when you do the follow: SConnection.attach(c, null); ... De : Vlad Jebelev [mailto:vlad@...] Envoyé : lundi, 2....
Tried, didn't help - even made it worse somehow, I'm getting more 'SConnection already opened' exceptions now. Regards, Vlad...
Vlad Jebelev
vlad@...
Jun 3, 2003 2:33 am
468
What you are trying should work. Naming the attachment "glue" is a good idea -- you should see this in the log output, and it can be used to distinguish...
Melissa & Anthony Ber...
berglas@...
Jun 3, 2003 3:26 am
469
Anthony : I felt guilty about all this evil c# porting so I decided to make wrappers around the classes that where not included in java 1.1.X . It turns out...
Thanks for trying not to for SimpleORM. I'm not saying that it is possible to have the same code run on JVM and .net, but I think that it is worth a try. I...
Melissa & Anthony Ber...
berglas@...
Jun 9, 2003 5:03 pm
471
I have a problem running the test in datatypestest.java. The problem is that testinit has this line : ...
Greetings folks, Would it not be reasonable to require the createTableSQL() method take some parameter to disambiguate which driver (either a driver class, or ...
christian.edward.grub...
Jun 10, 2003 5:07 pm
473
Hello, I just installed SimpleORM 1.11 and I ran "ant testall" all the tests went fine except datatypestest. ( I manually ran all the tests after...
Tina Tsui
ttsui@...
Jun 12, 2003 5:00 pm
474
Hi Anthony I spent last night trying to map SimpleORM to my test database. Once again I was defeated by SimpleORM strange syntax. I could link "matter to...
Nevermind, I read your comments in DataTypesTest.java...
Tina Tsui
ttsui@...
Jun 12, 2003 9:14 pm
476
It actually is specialized, from SDriverOracle:- /** Apparantly DATE supercedes TIMESTAMP.*/ protected String columnTypeSQL(SFieldMeta field) { if (...
Melissa & Anthony Ber...
berglas@...
Jun 12, 2003 9:31 pm
477
Ok I'll correct this mess since I started it. I must have had my underwear over my eyes not to see this. In DataTypesTest : ...
Hello Richard, Send me the code that almost works, and I'll make some time to get it going. Please put it together as a test case, succinct but self testing. ...
Melissa & Anthony Ber...
berglas@...
Jun 15, 2003 10:39 pm
479
Here you are! ... [mailto:berglas@...] ... not ... to ... DOCNO) ... (CLIENTNO) ... (TAS_CLIENTNO, ... ...
Greetings, all. I just got my sessions beans to work and did the full round trip with some JSPs. I think SimpleORM is great. It's simple, yet robust being ...
Tina Tsui
ttsui@...
Jun 20, 2003 6:58 pm
481
Hello Tina, I think that you basically understand the issues. The first point is that you obviously cannot maintain a SQL transaction between HTTP pages. That...
Melissa & Anthony Ber...
berglas@...
Jun 23, 2003 3:40 am
482
Hello Anthony, Thanks for the great info. I really welcome the vote to dump the beans! ... Are you suggesting I could use the same SConnection for the same ...
Tina Tsui
ttsui@...
Jun 23, 2003 4:33 am
483
Anthony, Sorry, I was a little confused. It was late. Since connections are associated with threads, there is no way to make sure I get the same connection....
Tina Tsui
ttsui@...
Jun 23, 2003 5:56 pm
484
Hi Anthony I have come to the conclusion that using the SFieldReference fields when reverse engineering a database is not going to work. No doubt you will call...
Dear Tina, ... sure I ... attach ... not matter if I ... This, of course, assumes that you are not on a J2EE implementationt that's trying to attach a...
christian.edward.grub...
Jun 23, 2003 10:12 pm
486
Yes. There is an example, LongTransactionTest. Anthony ... -- Spreadsheet Detective - Southern Cross Software Queensland Pty Ltd. If the correctness test is...
Melissa & Anthony Ber...
berglas@...
Jun 24, 2003 4:52 am
487
That's super. SimpleORM does all the things I need and does it well. Thank you, Anthony. Tina...
Tina Tsui
ttsui@...
Jun 24, 2003 2:22 pm
488
MSSQL has no Date or Time datatypes. SDriverMSSQL.columTypeSQL needs to be changed to replace those proerties with "DATETIME" for both. I also replaced...
Hello Richard, I'll look at your proposal in detail later. Doing references only one level at a time would be possible. But as you say you do loose something...
Melissa & Anthony Ber...
berglas@...
Jun 25, 2003 5:01 pm
490
In a message I sent May 1, I suggested that SFieldReference should look something like this: ...
My proposal is NOT to use the SReferenceFields at all but use code like that below to perform the same functions. Class Employee ....{ ... /**reference field...