简单 SQL 数据库:LlamaDB
LlamaDB 是一个用 Rust 语言编写的简单 SQL 数据库。
Building
LlamaDB is built using the nightly builds of Rust and Cargo. For installation instructions, go to http://www.rust-lang.org.
To use the CLI, navigate to thecli/directory and runcargo run. You'll be greeted by the friendlyllamadb>prompt, with whom you can enter SQL queries. To exit the CLI, pressCtrl+D.
Examples, Features and TODO
For a quick rundown of implemented features, see the Usage guide.
See the issue tracker for unimplemented features and bugs: https://github.com/nukep/llamadb/issues
Another SQL database?
Yes.
I started this mostly as a learning project so that I could learn SQL and its implementation details better. This project may or may not go anywhere; we'll just have to see.
The other reason I started this was to see how the Rust programming language could be used to write large projects such as SQL databases. So far, I think it's working out fairly well. :)