ladybird/Userland/Libraries/LibSQL
mnlrsn 66216d3af6 LibSQL: Add simple REGEXP match
The implementation of LIKE uses regexes under the hood, and this
implementation of REGEXP takes the same approach. It employs
PosixExtended from LibRegex with case insensitive and Unicode flags
set. The implementation of LIKE is based on SQLlite specs, but SQLlite
does not offer directions for a built-in regex functionality, so this
one uses LibRegex.
2022-01-23 22:34:53 +03:30
..
AST LibSQL: Add simple REGEXP match 2022-01-23 22:34:53 +03:30
BTree.cpp
BTree.h
BTreeIterator.cpp
CMakeLists.txt LibSQL: Introduce SELECT ... LIMIT xxx OFFSET yyy 2022-01-16 11:17:15 +01:00
Database.cpp LibSQL: Improve error handling 2021-12-04 20:49:22 +03:30
Database.h LibSQL: Improve error handling 2021-12-04 20:49:22 +03:30
Forward.h
HashIndex.cpp
HashIndex.h
Heap.cpp LibSQL: Avoid unnecessary copies in Heap 2022-01-01 15:40:39 +01:00
Heap.h LibSQL: Improve error handling 2021-12-04 20:49:22 +03:30
Index.cpp
Index.h
Key.cpp
Key.h
Meta.cpp
Meta.h
ResultSet.cpp LibSQL+SQLServer: Implement first cut of SELECT ... ORDER BY foo 2022-01-16 11:17:15 +01:00
ResultSet.h LibSQL+SQLServer: Implement first cut of SELECT ... ORDER BY foo 2022-01-16 11:17:15 +01:00
Row.cpp
Row.h
Serializer.cpp
Serializer.h
SQLClient.cpp
SQLClient.h LibCore+LibIPC+Everywhere: Return Stream::LocalSocket from LocalServer 2022-01-15 13:29:48 +03:30
SQLResult.cpp LibSQL: Introduce SELECT ... LIMIT xxx OFFSET yyy 2022-01-16 11:17:15 +01:00
SQLResult.h LibSQL: Introduce SELECT ... LIMIT xxx OFFSET yyy 2022-01-16 11:17:15 +01:00
TreeNode.cpp
Tuple.cpp
Tuple.h
TupleDescriptor.h
Type.h
Value.cpp
Value.h
ValueImpl.h