Re: Interfaces.C and use clause





ich_bin_elvis@xxxxxxxxxxx wrote:
When I use : Use Interfaces.C;

[snip]

for the use type win32.bool i made a shadow package... And this worked fine. But when I remove the use clause for Interfaces.C I get that operators +-= is not visible an that this could be solved with an use clause.... is there another way. any examples


At the point where you "with" the win32 shadow package add "use type xxxx.bool;" (where xxxx is replaced with th ename of your shadow package). Use type make sall the operators visible but soen't have any of the less desirable effects of "use".


Peter

.



Relevant Pages

  • Re: getting the nearest number from a column
    ... The trick here lies in in the ORDER BY clause. ... hence windowing semantics are used. ... if one doesn't use any clause in analytic function (one partition, ... SQL> select ename, deptno, sal, maxover mxsal ...
    (comp.databases.oracle.server)
  • Re: Top 10 records
    ... By definition a heap table is an unordered collection of rows so to ... assign an order you most use an order by clause. ... from (select ename, sal from emp order by sal desc) ...
    (comp.databases.oracle.misc)