mirror of
https://github.com/RGBCube/serenity
synced 2025-10-28 21:42:06 +00:00
This partially implements SQLite's bind-parameter expression to support
indicating placeholder values in a SQL statement. For example:
INSERT INTO table VALUES (42, ?);
In the above statement, the '?' identifier is a placeholder. This will
allow clients to compile statements a single time while running those
statements any number of times with different placeholder values.
Further, this will help mitigate SQL injection attacks.
|
||
|---|---|---|
| .. | ||
| CMakeLists.txt | ||
| TestSqlBtreeIndex.cpp | ||
| TestSqlDatabase.cpp | ||
| TestSqlExpressionParser.cpp | ||
| TestSqlHashIndex.cpp | ||
| TestSqlStatementExecution.cpp | ||
| TestSqlStatementParser.cpp | ||
| TestSqlValueAndTuple.cpp | ||