Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: EXEC SQL INCLUDE sqlda on Solaris 2.6

Re: EXEC SQL INCLUDE sqlda on Solaris 2.6

From: Paul Simmons <famine_at_death.iinet.net.au>
Date: Fri, 14 May 1999 09:40:06 +0800
Message-ID: <373B7EF6.4E5D198B@death.iinet.net.au>


> >No sorry I am just programming pure C not C++
>
> Lucky bastard! :-) Can't say I enjoy the OO implememtation of C++ that much
> either. I mean come one, what is easier and better:
> myclass::myclass
> myclass::~myclass
> or
> myclass::constructor
> myclass::destructor

Constructors and destructors are the least of the problems ... C++ tries to impliment multiple inherritence but that is tragically flawed. What ever you do never, ever, inherit 2 objects that have function name within

ie

myclass1::calc

myclass2::calc

myclass3 in herits myclass1 and myclass2

call calc and it is going to fall in a big heap.

The tragety of it all is it Eiffel was launched before C++ we would all be programming in that and we wouldn't have the problem, it has an outstanding implimentation of multiple inheritance.

> The weenies that decided and implemented the C++ notations and syntax are
> 1st class A holes IMNSHO.

Essentially it is a hack that has gone out of control.

> >BTW what the hell does OCI stand for?, I have picked up that it is used
> >in referance to embedded sql but that is it.
>
> Oracle Call Interface. The API for talking to Oracle.

Thank you.
--
Regards

Paul Simmons

"A nation is a society united by a delusion about its ancestory and by a common hatred of its neighbours."
-- Willian Ralph Inge [1860 - 1954] Received on Thu May 13 1999 - 20:40:06 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US