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 : /Dating Site ...
SimpleORM@yahoogroups...
Dec 9, 2003 7:11 am
722
Hi, Please let me know if I'm trying to do something impossible with SimpleORM, becuase I haven't figured out how to get it to work. I need to use SimpleORM to...
Hi, Please let me know if I'm trying to do something impossible with SimpleORM, becuase I haven't figured out how to get it to work. I need to use SimpleORM to...
Look at example "LongTransactionTest.java". You can even keep your transaction if you want (I think). To keep your DB1 objects while you work on DB2 just...
Thanks Sylvain! That's just what I needed! I didn't realize I could just detach and reattach the object. I just have a quick question regarding this...
1) Yes your changes will be commited. What happens is that upon flush the queries batched to this point are sent to the database. Basically the next commit()...
Anyone ever tried to do paging in SimpleORM? If so how did you do it? By paging I refer to showing only a subset (a page) of the records at a time. I dont want...
For those interested I have been successfull I my paging endeavour. I have found a nice way to include these functionalities into SimpleORM. I have tested it...
BTW I uploaded a zip file containing the 4 files I modified in core to implement database paging for those that are intested. The changes are wrapped in a /*...
Sylvain, This is something that is indeed very useful (especially for webapps). Thanks. /Phil ... From: "sylvainhamel" <sylvainhamel@...> To:...
Philippe Back (High O...
phil@...
Dec 22, 2003 11:26 am
731
I have found a bug in (my modified version of) SDriver where paging will fail when you request record 1000 and over. Its easily patched though (see below). Ill...
Hello, I am fairly new to this, so please bear with me if I should have severely misunderstood a basic concept. Is it advisable to encapsulate a UI dialog in a...
Hi, Just in case someone is interested, there was a bug in the outputFindOrCreate(Writer out) method in ForeignKeyGenerate class. The fixed code is listed...
One thing that I seem to have noticed with MySQL is that Foreign Keys must be indexed. Try creating an index for each of your foreign keys, and see if it...
... Keys must ... and see if ... it's actually a requirement and happens only on innodb type tables. for those who might run into this problem later, check out...
OK, I'll add this to the next version, probably fairly soon. Anthony...
Anthony & Melissa Ber...
berglas@...
Jan 2, 2004 6:56 am
738
Hello Sylvain, I have not looked at your code, but will do so in a few weeks. But I am still a little unclear what you are trying to do. Remember that the...
Anthony & Melissa Ber...
berglas@...
Jan 2, 2004 7:03 am
739
Look at the query I make in the modified SDriver and all we be clear. For a particular page just one round trip is made and only the wanted subset of records...
... query ... 1) Exactly. A cursor would have been better but making this work across databases made me cringe a little. So toying with SQL I came across a...
An integral number of the lowest common factor is the method that preserves the most flexibility in trapping rounding errors. So, for dollars, (amount=100,...
A few comments. First, from an application UI point of view, it annoys me personally to have to use lots of small pages to view data. I'd much rather scroll ...
Anthony & Melissa Ber...
berglas@...
Jan 11, 2004 12:06 am
744
... personally to ... scroll ... find etc. Of course. If I could I would query all my record and let the interface sort and filter it out. Much easier to do. I...
===== _________________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail :...
Im in the implementation of a filter function in a web application. I want to be able to say : Find all [persons] that have a [firstname] with the substring...
Hello Sylvain, If you have 5,000 records I would probably display the first 100 or so and have the user refine the the search. Paging does not really help...
Anthony & Melissa Ber...
berglas@...
Jan 16, 2004 5:22 am
749
Sylvain, Anthony, The problem here is that most people are used to the way Google does it, which is through paging. They then expect their app to work the...