|
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 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.