Am 23.06.2019 um 16:33 schrieb Jonas Maebe:
On 23/06/2019 09:08, Dennis wrote:
Using fpc 3.0.4, Lazarus 2.0, the following simple program
program tryfinally;
begin
try
Writeln('before finally');
finally
Writeln('inside finally. Before Exit');
exit; //
delphi apparently functions the same if I've read the docs right. something about returning control to the exception handler BEFORE your program gets control back.--Alexander Grotewohlhttp://dcclost.comOn Jun 23, 2019 3:08 AM, Dennis wrote:Using fpc 3.0.4, Lazarus 2.0, the following simple program
On 23/06/2019 09:08, Dennis wrote:
> Using fpc 3.0.4, Lazarus 2.0, the following simple program
>
> program tryfinally;
>
> begin
> try
> Writeln('before finally');
> finally
> Writeln('inside finally. Before Exit');
> exit; // end;
> Writeln('af
Am 23.06.2019 um 11:31 schrieb Michael Van Canneyt:
On Sun, 23 Jun 2019, Sven Barth via fpc-pascal wrote:
Okay, independently of whether the REST module is the optimal
solution or not, it should work, right? (and shouldn't the Wiki
entry then mention the advantages/disadvantages of the two
On Sun, 23 Jun 2019, Sven Barth via fpc-pascal wrote:
Okay, independently of whether the REST module is the optimal
solution or not, it should work, right? (and shouldn't the Wiki entry
then mention the advantages/disadvantages of the two approaches?
Cause when looking at the SQLDB REST modu
Am 23.06.2019 um 00:50 schrieb Michael Van Canneyt:
On Sat, 22 Jun 2019, Sven Barth via fpc-pascal wrote:
The REst Module has the additional disadvantage that you must have an
initial /REST/ or whatever part in your URL. With the dispatcher on a
datamodule, you can skip this if so desired...
Using fpc 3.0.4, Lazarus 2.0, the following simple program
program tryfinally;
begin
try
Writeln('before finally');
finally
Writeln('inside finally. Before Exit');
exit; //tryfinal