summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibSQL/AST
AgeCommit message (Expand)Author
2023-03-15LibSyntax+Libraries: Replace TextStyle with Gfx::TextAttributesSam Atkins
2023-03-06Everywhere: Remove NonnullRefPtr.h includesAndreas Kling
2023-03-06Everywhere: Stop using NonnullRefPtrVectorAndreas Kling
2023-02-21LibSQL: Fix minor const-correctness issuesAndreas Kling
2023-02-08Everywhere: Use ReadonlySpan<T> instead of Span<T const>MacDue
2023-02-03LibSQL: Store selected column names in the results for SELECT statementsTimothy Flynn
2023-01-27AK: Remove StringBuilder::build() in favor of to_deprecated_string()Linus Groh
2023-01-01LibSQL: Add parsing and evaluation of BOOLEAN type literalsTimothy Flynn
2022-12-14LibSQL: Support 64-bit integer values and handle overflow errorsTimothy Flynn
2022-12-07LibSQL+SQLServer+sql: Send and parse the correct number of changed rowsTimothy Flynn
2022-12-07LibSQL: Parse and execute sequential placeholder valuesTimothy Flynn
2022-12-07LibSQL: Partially implement the UPDATE commandTimothy Flynn
2022-12-06Everywhere: Rename to_{string => deprecated_string}() where applicableLinus Groh
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-11-30LibSQL: Partially implement the DELETE commandTimothy Flynn
2022-11-30LibSQL+SQLServer: Return a NonnullRefPtr from Database::get_tableTimothy Flynn
2022-11-30LibSQL+SQLServer: Return a NonnullRefPtr from Database::get_schemaTimothy Flynn
2022-11-30LibSQL: Immediately commit database modifications (for now)Timothy Flynn
2022-11-30LibSQL: Support BOOLEAN column types in the CREATE TABLE commandTimothy Flynn
2022-11-27LibSyntax: Teach each highlighter about it's comment syntaxKyle Lanmon
2022-10-14LibSQL: Rewrite the SQL::Value type to be contained within one classTimothy Flynn
2022-10-14LibSQL: Remove infallible type conversions from SQL::ValueTimothy Flynn
2022-10-14LibSQL: Copy SQL::Value instances less frequently (which may be vectors)Timothy Flynn
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-18Userland: Change static const variables to static constexprLenny Maiorani
2022-03-13Libraries: Use default constructors/destructors in LibSQLLenny Maiorani
2022-02-13LibSQL: Return a not-yet-implemented error for unimplemented expressionsTimothy Flynn
2022-02-10LibSQL: Return unimplemented errors from unimplemented MATCH expressionsTimothy Flynn
2022-02-10LibSQL: Remove the now-unused ExecutionContext::result objectTimothy Flynn
2022-02-10LibSQL: Convert SQL expression evaluation to use ResultOrTimothy Flynn
2022-02-10LibSQL+SQLServer: Introduce and use ResultOr<ValueType>Timothy Flynn
2022-02-10LibSQL: Do not crash when SELECTing from an empty tableTimothy Flynn
2022-02-10LibSQL+SQLServer: Move LibSQL/SQLResult.[h,cpp] to LibSQL/Result.[h,cpp]Timothy Flynn
2022-02-10LibSQL+SQLServer: Return the new Result class from statement executionsTimothy Flynn
2022-02-09LibSQL: Update list of expected statementsDaniel van Gerpen
2022-02-05LibSQL: Implement a DESCRIBE TABLE statementMahmoud Mandour
2022-01-31Everywhere: Update copyrights with my new serenityos.org e-mail :^)Timothy Flynn
2022-01-23LibSQL: Add simple REGEXP matchmnlrsn
2022-01-16LibSQL: Introduce SELECT ... LIMIT xxx OFFSET yyyJan de Visser
2022-01-16LibSQL+SQLServer: Implement first cut of SELECT ... ORDER BY fooJan de Visser
2022-01-07LibSQL: Implement LIKE SQL expressionsGuilherme Gonçalves
2022-01-07LibSQL: Properly parse ESCAPE expressionsGuilherme Gonçalves
2021-12-11Everywhere: Fix -Winconsistent-missing-override warnings from ClangDaniel Bertalan
2021-12-04LibSQL: Gracefully react to unimplemented valid SQLJan de Visser
2021-12-04LibSQL: Improve error handlingJan de Visser
2021-11-10LibSQL: Implement table joinsJan de Visser
2021-11-10LibSQL: Add current statement to the ExecutionContextJan de Visser
2021-10-25LibSQL: Add better error handling to `evaluate` and `execute` methodsJan de Visser
2021-10-25LibSQL: First cut of SQL `WHERE` clauseJan de Visser