Re: [fpc-pascal] fcl-db: oracle SP

2008-04-08 Thread Bee
Below is a simple Oracle sample : Thanks, your advice is indeed working using TOracleConnection and TSQLQuery. But, I got performance overhead using this trick. Pipelined function took 16 ms while default SF/SP for same result took less than 1 ms. So, the thing we should fix is to make sqlD

Re: [fpc-pascal] fcl-db: oracle SP

2008-04-08 Thread Bee
So, the thing we should fix is to make sqlDB supports Oracle's default SP/SF and get the best performance out of it. ;) http://bugs.freepascal.org/view.php?id=7 -Bee- has Bee.ography at: http://beeography.wordpress.com ___ fpc-pascal maillist -

Re: [fpc-pascal] Why I?m choosing (Object) Pascal

2008-04-08 Thread Michael Van Canneyt
On Tue, 8 Apr 2008, greim wrote: > > > > > Linux works (I did the port myself) but is still a bit rough on the > > deployment side, so they don't include it officially yet. > > And if linux works, the other platforms should work also (I took care > > of that during porting). > > > i know its

Re: [fpc-pascal] Why I?m choosing (Object) Pascal

2008-04-08 Thread greim
Linux works (I did the port myself) but is still a bit rough on the deployment side, so they don't include it officially yet. And if linux works, the other platforms should work also (I took care of that during porting). i know its more or less OT: Windows for MORFIK development is not nice b

[fpc-pascal] Constant parameters and double types

2008-04-08 Thread Luiz Americo Pereira Camara
I'm evaluating the effect of passing function parameters by value or by reference. Like stated in the documentation, passing as reference (const) or by value types with size equal to pointer size like Integer has no difference in the code output (they are passed by value). Also as expected i