Re: [fpc-pascal] Make FPC closer to hardware

2008-11-16 Thread leledumbo
Micha Nelissen wrote: > > example? > Let Write(Ln) work without file system support? Perhaps just by supplying a routine to write one character, and let other write routines use it. -- View this message in context: http://www.nabble.com/Make-FPC-closer-to-hardware-tp20513082p20533138.html

Re[8]: [fpc-pascal] UDF+FREEBSD+FIREBIRD FPC generate wrong object file???

2008-11-16 Thread KES
Здравствуйте, KES. Вы писали 16 ноября 2008 г., 22:25:39: K> Здравствуйте, Michael. K> Вы писали 16 ноября 2008 г., 0:29:22: MVC>> On Sat, 15 Nov 2008, KES wrote: >>> Здравствуйте, Michael. >>> >>> Вы писали 15 ноября 2008 г., 23:28:10: >>> >>> >>> >>> MVC> On Sat, 15 Nov 2008, KES wrote

Re[7]: [fpc-pascal] UDF+FREEBSD+FIREBIRD FPC generate wrong object file???

2008-11-16 Thread KES
Здравствуйте, Michael. Вы писали 16 ноября 2008 г., 0:29:22: MVC> On Sat, 15 Nov 2008, KES wrote: >> Здравствуйте, Michael. >> >> Вы писали 15 ноября 2008 г., 23:28:10: >> >> >> >> MVC> On Sat, 15 Nov 2008, KES wrote: >> >> >> Здравствуйте >> >> >> >> h) select fntest() from rdb$database

[fpc-pascal] Starting out with Free Pascal

2008-11-16 Thread Bill
Graeme, Terrific answers and just what I was looking for. While I plugged around the net all yesterday morning I was unable to find the answer "any Delphi book should do." Thank you, thank you, thank you. Now I can plunk down my money and not expect to wait a week to find out that I am no clo

[fpc-pascal] Re: TBufDataset broken in fixes_2_2

2008-11-16 Thread Funky Beast
Michael Müller wrote: > Hi! > > Am 15.11.2008 um 16:56 schrieb Funky Beast: > >> Hi, >> >> TBufDataset is broken in latest fixes_2_2. >> >> Can be reproduce with following code: >> >> var s: TSQLQuery; >> begin >> s := TSQLQuery; > > The example is correct without .Create()? > >> s.Free; >> e

Re: [fpc-pascal] TBufDataset broken in fixes_2_2

2008-11-16 Thread Michael Müller
Hi! Am 15.11.2008 um 16:56 schrieb Funky Beast: Hi, TBufDataset is broken in latest fixes_2_2. Can be reproduce with following code: var s: TSQLQuery; begin s := TSQLQuery; The example is correct without .Create()? s.Free; end; Compiling fcl-db with debug info, the above code excepts

Re: [fpc-pascal] TBufDataset broken in fixes_2_2

2008-11-16 Thread Marius
var s: TSQLQuery; begin s := TSQLQuery; s.Free; end; Think that should be s := TSQLQuery.Create(nil).. Greetings, Marius ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal