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 1248 - 1277 of 1847   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1248
I got this one too any help I am new to simpleorm is it possible to use it with mysql...
s_petrovi
Offline Send Email
Dec 1, 2005
4:37 pm
1249
I got this one too any help I am new to simpleorm is it possible to use it with mysql...
s_petrovi
Offline Send Email
Dec 1, 2005
4:43 pm
1250
Test DataTypesTest.java fails for mysql4.1 I think it try to create a BYTES type column and I think mysql4.1 doesn't have BYTES types...
s_petrovi
Offline Send Email
Dec 1, 2005
6:21 pm
1251
__________________________________________________________ Find your next car at http://autos.yahoo.ca...
Stanko Petrovic
s_petrovi
Offline Send Email
Dec 2, 2005
3:51 pm
1252
Hi, following Sylvain and Anthony advices, I reworked my data access class to minimize databases roundtrips. But I encounter problems when trying to work on...
Franck Routier
routier_franck
Offline Send Email
Dec 7, 2005
7:57 pm
1253
Hi, I have added an = test on the object, that confirms that the first time, [Fipie 2] that getReference returns is the same as the one retrieved by the first...
Franck Routier
routier_franck
Offline Send Email
Dec 8, 2005
8:10 pm
1254
Hello, Yes, you would have to use detachWithoutClosing. The SimpleORM API is optimized for the normal case, which is a single database. The good news is that...
Anthony & Melissa Ber...
berglas@...
Send Email
Dec 11, 2005
2:46 am
1255
Well I just got engaged! Can't believe it, just last year I was beginning to think I'd never meet someone. I'm already 25 and I thought it was all over. After...
ziggy.millam8321@...
Send Email
Dec 12, 2005
12:59 pm
1256
... MySQL 4.1 fails a few other DataTypesTest tests too. TestUte.assertTrue(dt.getObject(DataTypes.NAME).toString().equals("Trailing ")); actually returns...
dkible
Offline Send Email
Dec 12, 2005
5:44 pm
1257
The behavior seems the right one from SimpleORM. In that second while block you detach your object from the connection and incidently the cache. Upon the next...
sylvainhamel
Offline Send Email
Dec 13, 2005
4:53 am
1258
Thanks Sylvain ! Now I understand my stupid error... As for the use of newQuery and so, thanks for the tip. In fact this is very early proof of concept, and ...
Franck Routier
routier_franck
Offline Send Email
Dec 13, 2005
8:30 am
1259
SimpleORM was just downloaded today. I'm running the build script with ant. The following error is given: For my DBMS, it appears that when FOR UPDATE is used...
Steve Swett
sswett@...
Send Email
Dec 15, 2005
12:04 am
1260
Hi there, welcome. The answer is easy just develop your own SimpleORM driver. Just look at SDriver and its subclasses. ... with ant. ... specifying ... column ...
sylvainhamel
Offline Send Email
Dec 15, 2005
1:29 pm
1261
There's already an SDriverDB2_400 driver. I guess I'll go look for another ORM tool. Thanks anyway. ... From: SimpleORM@yahoogroups.com...
Steve Swett
sswett@...
Send Email
Dec 16, 2005
1:07 am
1262
If you cannot get this one to work man, abandon all hope for the others, they are more complex... /Phil...
Philippe Back (High O...
PhilippeBack
Offline Send Email
Dec 16, 2005
7:45 am
1263
Why dont you post your changes so that we can all benefit from it? If you need help debuging the SDriver code we can help ya to it. Alternatively you can build...
sylvainhamel
Offline Send Email
Dec 16, 2005
1:52 pm
1264
Thanks for reaching out to me. I haven't made any changes to anything. I was just running the standard build routine directly after installation. I didn't...
Steve Swett
sswett@...
Send Email
Dec 16, 2005
2:20 pm
1265
I ran the build, with no parameters, with ant, against a version 5.0.16 mySQL database and a version 3.1.12 mySQL JDBC driver and received the following...
Steve Swett
sswett@...
Send Email
Dec 17, 2005
1:24 am
1266
Steve I don't think you need to do anything to use SimpleORM with MySQL. Just don't use the data types that don't work. There are some other minor problems....
Dan Kibler
dkible
Offline Send Email
Dec 17, 2005
2:23 am
1267
Thanks, Dan. After commenting out the ABYTES field stuff the rest of the tests ran fine. ... From: SimpleORM@yahoogroups.com...
Steve Swett
sswett@...
Send Email
Dec 17, 2005
11:43 am
1268
I have a need to use SimpleORM with an existing database (created 20 years ago). A few of the tables have interesting multi column primary keys that are not...
Steve Swett
sswett@...
Send Email
Dec 17, 2005
12:50 pm
1269
The connection output is great stuff, but at times I'd like to suppress it. How can I do that? For example, how do I suppress all the rows that start with...
Steve Swett
sswett@...
Send Email
Dec 17, 2005
8:13 pm
1270
I see you can use: SLog.slog.level = 0; ... From: SimpleORM@yahoogroups.com [mailto:SimpleORM@yahoogroups.com] On Behalf Of Steve Swett Sent: Saturday,...
Steve Swett
sswett@...
Send Email
Dec 17, 2005
8:21 pm
1271
This has to do with the tracelevel: String traceLevel = System.getProperty("trace.level"); if (traceLevel != null && !traceLevel.equals("")) SLog.slog.level =...
Philippe Back (High O...
PhilippeBack
Offline Send Email
Dec 18, 2005
9:17 am
1272
I see in the white paper that it states near the bottom of the Employee class that the get/set methods are completely optional. What is a good alternative way...
Steve Swett
sswett@...
Send Email
Dec 18, 2005
2:37 pm
1273
I'm sorry. I see you can do like the following: For a getter: teacher.getString(Teacher.DistrictId) For a setter: ...
Steve Swett
sswett@...
Send Email
Dec 18, 2005
2:52 pm
1274
Unless I do not understand your question, the way I see it, the order is not important since the fields are fetch by name. ... 20 years ... keys that ... ...
sylvainhamel
Offline Send Email
Dec 19, 2005
6:21 pm
1275
Most DBMS's allow you to fetch fewer rows than the entire result set. For example let's say you only want to fetch 10 records max. With mySQL you can tack on...
Steve Swett
sswett@...
Send Email
Dec 23, 2005
5:40 pm
1276
Look in there: http://livedocs.macromedia.com/jrun/4/Programmers_Guide/servletoptimizing5.h tm search for limit rows /Phil _____ From:...
Philippe Back (High O...
PhilippeBack
Offline Send Email
Dec 23, 2005
8:19 pm
1277
Hi, I've got a problem here that I am have trouble figuring out. I am trying to join 2 tables together for a single query. The fields aren't declared as...
Benze
ebenzacar
Offline Send Email
Dec 23, 2005
11:21 pm
Messages 1248 - 1277 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