1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 10:37:44 +00:00

Userland: Add 'sql', a REPL for LibSQL

This adds a simple REPL command line utility for (eventually) executing
SQL statements / files. Currently, it just validates statements from
stdin and prints any errors.
This commit is contained in:
Timothy Flynn 2021-04-18 17:40:00 -04:00 committed by Andreas Kling
parent 377992d33e
commit 5ec471b78d
2 changed files with 195 additions and 0 deletions

View file

@ -38,6 +38,7 @@ target_link_libraries(passwd LibCrypt)
target_link_libraries(paste LibGUI)
target_link_libraries(pro LibProtocol)
target_link_libraries(shot LibGUI)
target_link_libraries(sql LibLine LibSQL)
target_link_libraries(su LibCrypt)
target_link_libraries(tar LibArchive LibCompress)
target_link_libraries(telws LibCrypto LibTLS LibWebSocket LibLine)