Hi,
does LiteDAC support the WITH clause in a SELECT statement?
WITH RECURSIVE
cnt(x) AS (VALUES(1) UNION ALL SELECT x+1 FROM cnt WHERE x<1000000)
SELECT x FROM cnt;
Best regards
Rolf Schlueter
WITH clause in SELECT statement
Re: WITH clause in SELECT statement
Hello,
This feature is supported by the SQLite library since SQLite3.dll version 3.8.4. In the Direct mode, this feature is supported since the latest LiteDAC version 2.3.7.
This feature is supported by the SQLite library since SQLite3.dll version 3.8.4. In the Direct mode, this feature is supported since the latest LiteDAC version 2.3.7.
Re: WITH clause in SELECT statement
Yes, it works!
Thanks
Rolf

Thanks
Rolf
Re: WITH clause in SELECT statement
You are welcome. Feel free to contact us if you have any further questions.