Geeks With Blogs

News
Chris Ongsuco's Weblog Information Technology, business, life, food... OOP
Has OOP Failed? Of course NOT!
I was surfing the net this morning and found this in one forum. The author seemed clueless of what he's talking about. I'm not sure if I'm going to irritated or laugh (out loud)...I just find it pathetic...see for yourself here.

Posted On Monday, February 6, 2006 3:03 AM

Flamed
As a regular member of the local MS forum here in our place, I felt that I am always the "bad guy" when answering post. Well maybe because I am a new comer unlike most of the people there. I always got flamed when opposing to these ideas: Architecture - That having the connection string in the client (Win Form) or putting all those SqlCommands in the UI (Web/Win) is the correct way of doing things. - That using a WEB SERVICE to manage/centralize the connection string is the way to go. - That SQLHelper ......

Posted On Thursday, August 11, 2005 6:52 AM

Sign of a bad architecture
Imagine your business entities would be something like this: public string Firstname { get { LoadInfo(); return _firstname; } set { LoadInfo (); if (_firstname != value) { _firstname = value; ExecuteQuery("UPDATE Table SET Firstname = '" + _firstname + "' WHERE ID = " + _id.ToString()); } } } public string Lastname { get { LoadInfo(); return _lastname; } set { LoadInfo (); if (_lastname != value) { _lastname = value; ExecuteQuery("UPDATE Table SET Lastname = '" + _lastname + "' WHERE ID = " + _id.ToString()); ......

Posted On Thursday, June 16, 2005 10:36 AM

We Don't Have A Choice Pattern

I will call this the "PowerBuilder Pattern" coz this was based on an existing PowerBuilder ancestor design of one company. I was shocked when they told me about this design to be implemented in .Net. Cheers! :-)

Posted On Thursday, September 9, 2004 8:51 AM

J2EE patterns - a nice read too
What I learned from reading other .Net blogs was not to focus on MS Architecture patterns alone but, to also read other architecture patterns like this - J2EE Transfer Object pattern. I got this site from Frans Bouma, who recommended this link, in Paul Wilson's blog entry about Avoiding Reflection ......

Posted On Monday, August 30, 2004 12:24 PM

Copyright © Chris Ongsuco | Powered by: GeeksWithBlogs.net | Join free