SQLite-D alpha is here
Stefan Koch via Digitalmars-d-announce
digitalmars-d-announce at puremagic.com
Thu May 26 12:11:50 PDT 2016
On Thursday, 26 May 2016 at 14:45:58 UTC, Suliman wrote:
>
> Could you explain more details? What do you mean by indirection
> work with data?
Sure, I can explain.
So, all that sqlite-d does is reading the sqlite-db files.
However the proper sqlite does much more:
It implements a whole ByteCode-Compiler and Interpreter to be
able to precompile and execute SQL-statements.
Thus even for simple querys you have a significant overhead.
If you want to use sqlite-d you basically write all your queries
as D code which can be directly executed, rather then having to
be compiled from SQL to ByteCode.
More information about the Digitalmars-d-announce
mailing list