ladybird/Tests/LibSQL
Timothy Flynn b2b9ae27fd LibSQL: Parse and execute sequential placeholder values
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.
2022-12-07 13:09:00 +01:00
..
CMakeLists.txt Tests: Remove all file(GLOB) from CMakeLists in Tests 2021-09-02 09:08:23 +02:00
TestSqlBtreeIndex.cpp LibSQL: Remove infallible type conversions from SQL::Value 2022-10-14 17:47:44 +03:30
TestSqlDatabase.cpp Everywhere: Rename to_{string => deprecated_string}() where applicable 2022-12-06 08:54:33 +01:00
TestSqlExpressionParser.cpp LibSQL: Parse and execute sequential placeholder values 2022-12-07 13:09:00 +01:00
TestSqlHashIndex.cpp AK+Everywhere: Rename String to DeprecatedString 2022-12-06 08:54:33 +01:00
TestSqlStatementExecution.cpp LibSQL: Parse and execute sequential placeholder values 2022-12-07 13:09:00 +01:00
TestSqlStatementParser.cpp LibSQL: Parse and execute sequential placeholder values 2022-12-07 13:09:00 +01:00
TestSqlValueAndTuple.cpp Everywhere: Rename to_{string => deprecated_string}() where applicable 2022-12-06 08:54:33 +01:00