Re: Pro*C question
Date: 1996/08/29
Message-ID: <32259D70.3FEA_at_ix.netcom.com>#1/1
CaryM wrote:
>
> I have been able to successfully compile a C program using the Pro*C
> precompiler. When I run the program, I get an access error on the libclntsh.so
> library (client shared library).
Erste, there is no pro*c compiler. it's a pre-compiler/parser. major difference. Zweite, everybody has this same problem, i'm surprised oracle doesn't fix it. To use your shlib, just make a link to the system shared libs and don't forget to tell your make file to use the shared libs instead of the static ora libs. You should be able to see a compiled size difference of around 100 to 1 or better. Most of our programs went from 2MB to 150k or less. Check out your ps aux output if you want to see some really nice numbers. Your footprints in RAM will have been halved.
bmartin Received on Thu Aug 29 1996 - 00:00:00 CEST