× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



Walden,

Thanks for the reply. Regarding mixing two layers that "should never be mixed", are you opposed to reading an SQL cursor and writing it directly to the screen? My take is that you're saying there should be a business objects layer in between? If so, is that to say that the business objects render as HTML?

Nathan M. Andelin


On Wed, Jul 2, 2008 at 1:18 PM, Walden H. Leverich wrote:

Say the application is simple as prompting the user to enter a name. Then generating a list of people having that name (or name prefix) from

your database.

You're mixing two layers that should never be mixed! With the exception
of complex reporting where you're building SQL on the fly, I would have
a business objects layer in the middle. Since you asked how we do it in
other technologies... In .NET we'd:

string firstName = "bob"; //Get it however

Customer example = Customer.NewCustomer();
example.FirstName = firstName;
List<Customer> customers = Customer.GetByExample(example);

At this point I have a list of customers OBECTS whose firstName is Bob.
Of course you need to have a mature object infrastructure in place, but
that's what you should be aiming for anyway.

-Walden

--
Walden H Leverich III
Tech Software
(516) 627-3800 x3051
WaldenL@xxxxxxxxxxxxxxx
http://www.TechSoftInc.com

Quiquid latine dictum sit altum viditur.
(Whatever is said in Latin seems profound.)

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.