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

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 737 - 766 of 1847   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
737
OK, I'll add this to the next version, probably fairly soon. Anthony...
Anthony & Melissa Ber...
berglas@...
Send Email
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@...
Send Email
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...
sylvainhamel
Offline Send Email
Jan 4, 2004
3:55 am
740
... 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...
sylvainhamel
Offline Send Email
Jan 5, 2004
4:08 pm
741
... Came across this thought provoking comment in SFieldBigDecimal. What data type do you guys use for storing monetary values?...
sylvainhamel
Offline Send Email
Jan 5, 2004
8:11 pm
742
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,...
Lane Sharman
lanesharman
Offline Send Email
Jan 5, 2004
11:27 pm
743
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@...
Send Email
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...
sylvainhamel
Offline Send Email
Jan 12, 2004
4:35 am
745
===== _________________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail :...
Durbec Sébastien
sebastien_du...
Offline Send Email
Jan 13, 2004
7:54 am
746
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...
sylvainhamel
Offline Send Email
Jan 15, 2004
4:59 pm
747
I have a field that is defined by an SQL statement like this : (Its in VB but I think you guys will manage) Public Shared ReadOnly _NAME As New...
sylvainhamel
Offline Send Email
Jan 15, 2004
8:29 pm
748
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@...
Send Email
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...
Philippe Back (High O...
phil@...
Send Email
Jan 16, 2004
9:36 am
750
The big issue is that Google ranks the pages fairly effectively, so paging makes sense because you will usually only need to look at a few pages. But if it...
Anthony & Melissa Ber...
berglas@...
Send Email
Jan 16, 2004
10:39 am
751
Implementing OFFSET would be great because it helps in satisfying user requirements for paging in a painless way (leveraging simpleorm). I don't think that...
Philippe Back (High O...
phil@...
Send Email
Jan 16, 2004
11:31 am
752
I think you are getting stuck up on the numbers. What if its 3 pages of a 100 records? A user might want to browse this. ... so ... to see ... record ... ...
sylvainhamel
Offline Send Email
Jan 16, 2004
2:39 pm
753
My point exactly. You cant just display the first X and drop the rest. Sometimes the number of records returned will be a significant information to the user. ...
sylvainhamel
Offline Send Email
Jan 16, 2004
2:41 pm
754
The way I see it, its a matter of scalability. Is it worth it to add this? I think so. From my investigation the implementation has to be driver specific. The...
sylvainhamel
Offline Send Email
Jan 16, 2004
2:59 pm
755
OK, I'll look into this in the next release. But I need to know about different database implementations. Please let me know which drivers support an OFFSET...
Anthony & Melissa Ber...
berglas@...
Send Email
Jan 17, 2004
12:57 am
756
MySQL : limit(start,end) Postgresql : top nbrec ... offset start MSSQL : no such keywords, use stored procedures or the scheme I have given Oracle : Unknown of...
sylvainhamel
Offline Send Email
Jan 19, 2004
3:55 pm
757
For SQL Server: http://weblogs.asp.net/pwilson/archive/2003/10/10/31456.aspx http://www.rosca.net/writing/articles/serverside_paging.asp have interesting...
Philippe Back (High O...
phil@...
Send Email
Jan 20, 2004
8:16 pm
758
Not badm, should be faster. Mine focused on preserving the original query pretty much intact. Had you looked at it? ... (page_number - 1) primary_key FROM...
sylvainhamel
Offline Send Email
Jan 21, 2004
4:19 am
759
Hi All, I was wondering if anyone have used some caching mechanism for SRecordInstances (other than Transaction caching). Essentially, all objects returned...
awaragi
Offline Send Email
Jan 21, 2004
6:16 am
760
Yes but with all {0} {1} and stuff it was not too clear which parms did what. Okay, I was lazy. Or overbooked, you name it :-) Anyhow, I am now working on a...
Philippe Back (High O...
phil@...
Send Email
Jan 21, 2004
8:10 am
761
Second vote for OSCache. Easy to use, very configurable. Lots of contexts of applicability (from JSP to my own caches). /Phil ... From: "awaragi"...
Philippe Back (High O...
phil@...
Send Email
Jan 21, 2004
8:10 am
762
Hi Phil, Do you have any design or sample code (if possible) about how to use OSCache and your Simpleorm SRecordInstance objects? I have objects that change...
awaragi
Offline Send Email
Jan 21, 2004
3:37 pm
763
I do not cache Simpleorm SRecordInstace objects with OSCache. I use it for caching blocks of rendered HTML or ViewHelpers. This is where caching should go for...
Philippe Back (High O...
phil@...
Send Email
Jan 21, 2004
4:13 pm
764
hi anybody who has a sample of the simpleorm.properties and where to put in after unzipping the file. thanks...
Alex Mercado
leo45series
Offline Send Email
Jan 28, 2004
4:36 am
765
Hi, I'm building a J2EE application (3 Tier) using simpleorm. Has anyone experience doing this? Simpleorm combines data accessor objects and pure data objects....
oliver_eiholzer
Offline Send Email
Jan 28, 2004
4:13 pm
766
Hi, Don't sent the object(s) back. Build a view of what you want to display and ship that. Most of the time the JSP doesn't care about getting a nice...
Philippe Back (High O...
phil@...
Send Email
Jan 28, 2004
6:44 pm
Messages 737 - 766 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