Subject Re: DMD designer parameter syntax
From Akshat Kapoor <akshat.kapoor@kapoorsons.in>
Date Sun, 4 Oct 2020 10:53:45 +0530
Newsgroups dbase.getting-started

Good Morning Gaetano,
> params["nSite"].value = 1000000

>        with (parameters["nSite"])
>           signed = true
>           value = 1000000
>        endwith

Both the above statements amount to the same thing just the formatting
is a bit different. A property called signed is also being added. It
will not make any difference for you.

The designer streams out code according to its set style.

It probably creates / loads the object into memory and then streams out
the code from the instance in memory.

Your sql construction matches the pattern designer uses and hence it is
not being altered.

Whereas the params statement despite being valid is being streamed out
according to its own requirement.

Since this is not causing any effect in your code I would say ignore it.

Regards
Akshat