> On Wednesday 10 Oct 2007, [EMAIL PROTECTED] wrote:
> > planning engine all on top of an Oracle database. Customers would
> complain
> > about the instability of the client software
> 
> This is to be expected from a language that forces the programmer to
> deal with
> memoray allocation and release.

But it doesn't force you to do anything of the sort. If you know Delphi well
enough, all you do is create and free your objects and that is pretty easy.
Well written Delphi should not need to use malloc etc. e.g.

myObj = Obj.create();
try
        // Do stuff with myObj here
finally
        myObj.free;
end;

See, not a single malloc in sight!

Delphi also deals with pointers in a similar way to Java if you let it.
Although if you want to you can still write C++ pointer style code it is
generally considered nasty stuff. C++ was and is all pointers, Java takes
the pain away. Delphi gives you the choice :-) Anyway, this is all getting a
tad OT now so I'll leave it there :-)

Paul



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
ColdFusion is delivering applications solutions at at top companies 
around the world in government.  Find out how and where now
http://www.adobe.com/cfusion/showcase/index.cfm?event=finder&productID=1522&loc=en_us

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:290759
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to