summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibSQL/AST/Select.cpp
AgeCommit message (Expand)Author
2022-11-30LibSQL+SQLServer: Return a NonnullRefPtr from Database::get_tableTimothy Flynn
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-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: Return the new Result class from statement executionsTimothy Flynn
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
2021-12-04LibSQL: Improve error handlingJan de Visser
2021-11-10LibSQL: Implement table joinsJan 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
2021-10-05LibSQL: Allow expressions and column names in SELECT ... FROMJan de Visser
2021-08-21LibSQL+SQLServer: Bare bones INSERT and SELECT statementsJan de Visser