summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibSQL
AgeCommit message (Expand)Author
2021-11-02Libraries: Fix visibility of Object-derivative constructorsBen Wiederhake
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
2021-10-25LibSQL: Implement evaluate() method of BinaryOperatorExpressionJan de Visser
2021-10-25LibSQL: Implement binary operators for Value objectsJan de Visser
2021-10-08Libraries: Fix -Wunreachable-code warnings from clangNico Weber
2021-10-06LibSQL: Resolve cyclic dependencyBen Wiederhake
2021-10-05LibSQL: Allow expressions and column names in SELECT ... FROMJan de Visser
2021-10-05SQLServer+SQL+LibSQL: Allow sql client to specify the database nameJan de Visser
2021-10-04LibSQL: Check data types in INSERT statement parsingMahmoud Mandour
2021-10-04LibSQL: Parse INSERT statement without column namesMahmoud Mandour
2021-09-06Everywhere: Make ByteBuffer::{create_*,copy}() OOM-safeAli Mohammad Pur
2021-09-06Everywhere: Use OOM-safe ByteBuffer APIs where possibleAli Mohammad Pur
2021-09-03Everywhere: Prevent risky implicit casts of (Nonnull)RefPtrDaniel Bertalan
2021-09-03LibSQL: Replace Optional<NonnullRefPtr<T>> with RefPtr<T>Andreas Kling
2021-08-21LibSQL: Introduce Serializer as a mediator between Heap and client codeJan de Visser
2021-08-21LibSQL+SQLServer: Bare bones INSERT and SELECT statementsJan de Visser
2021-08-21LibSQL: Added 'nullable' and 'default value' option to ColumnDefJan de Visser
2021-08-21LibSQL: Redesign Value implementation and add new typesJan de Visser
2021-08-21LibSQL: Make TupleDescriptor a shared pointer instead of a stack objectJan de Visser
2021-08-13AK+Everywhere: Delete Variant's default constructorAli Mohammad Pur
2021-08-06LibSQL: Use compiler generated default functionsLenny Maiorani
2021-07-08LibSQL+SQLServer: Build SQLServer system serviceJan de Visser
2021-07-08LibSQL: Invent statement execution machinery and CREATE SCHEMA statementJan de Visser
2021-07-08LibSQL: Move Order and Nulls enums from SQL::AST to SQL namespaceJan de Visser
2021-06-24LibSQL: Make lexer and parser more standard SQL compliantJan de Visser
2021-06-24LibSQL: Move Lexer and Parser machinery to AST directoryJan de Visser
2021-06-19LibSQL: Database layerJan de Visser
2021-06-19LibSQL: Hash index implementation for the SQL storage layerJan de Visser
2021-06-19LibSQL: BTree index, Heap, and Meta objects for SQL Storage layerJan de Visser
2021-06-19LibSQL: Basic dynamic value classes for SQL Storage layerJan de Visser
2021-06-13Userland: Allow building SerenityOS with -funsigned-charGunnar Beutner
2021-06-08LibSQL: Limit the number of nested subqueriesTimothy Flynn
2021-06-07LibWeb+LibSyntax: Implement nested syntax highlightersAli Mohammad Pur
2021-06-05LibSQL: Limit the allowed depth of an expression treeTimothy Flynn
2021-06-05LibSQL: Fix off-by-one error in SyntaxHighlighterMax Wipfli
2021-06-05LibSQL: Clean up SyntaxHighlighter codeMax Wipfli
2021-06-03LibSQL: Report a syntax error for unsupported LIMIT clause syntaxTimothy Flynn
2021-06-01LibSQL: Return an error for empty common table expression listsTimothy Flynn
2021-05-17Everywhere: Fix a bunch of typosLinus Groh
2021-05-09LibSQL: Add a syntax highlighterDylan Katz
2021-05-06Tests: Move LibSQL tests to Tests/LibSQLBrian Gianforcaro
2021-05-05LibSQL: Fix incorrect return typesGunnar Beutner
2021-04-25AK+Userland: Move AK/TestSuite.h into LibTest and rework Tests' CMakeAndrew Kaster
2021-04-24LibSQL: Parse ALTER TABLE statementTimothy Flynn
2021-04-24LibSQL: Parse UPDATE statementTimothy Flynn
2021-04-24LibSQL: Parse INSERT statementTimothy Flynn
2021-04-24LibSQL: Add missing forward declarationsTimothy Flynn
2021-04-23LibSQL: Parse IN / NOT IN expressions with a nested SELECT statementTimothy Flynn
2021-04-23LibSQL: Parse common-table-expressions with a nested SELECT statementTimothy Flynn