|
| 1 | + |
| 2 | + |
| 3 | +This is a starting point for Scala solutions to the |
| 4 | +["Build Your Own SQLite" Challenge](https://codecrafters.io/challenges/sqlite). |
| 5 | + |
| 6 | +In this challenge, you'll build a barebones SQLite implementation that supports |
| 7 | +basic SQL queries like `SELECT`. Along the way we'll learn about |
| 8 | +[SQLite's file format](https://www.sqlite.org/fileformat.html), how indexed data |
| 9 | +is |
| 10 | +[stored in B-trees](https://jvns.ca/blog/2014/10/02/how-does-sqlite-work-part-2-btrees/) |
| 11 | +and more. |
| 12 | + |
| 13 | +**Note**: If you're viewing this repo on GitHub, head over to |
| 14 | +[codecrafters.io](https://codecrafters.io) to try the challenge. |
| 15 | + |
| 16 | +# Passing the first stage |
| 17 | + |
| 18 | +The entry point for your SQLite implementation is in `src/main/scala/Main.scala`. |
| 19 | +Study and uncomment the relevant code, and push your changes to pass the first |
| 20 | +stage: |
| 21 | + |
| 22 | +```sh |
| 23 | +git commit -am "pass 1st stage" # any msg |
| 24 | +git push origin master |
| 25 | +``` |
| 26 | + |
| 27 | +Time to move on to the next stage! |
| 28 | + |
| 29 | +# Stage 2 & beyond |
| 30 | + |
| 31 | +Note: This section is for stages 2 and beyond. |
| 32 | + |
| 33 | +1. Ensure you have `mvn` installed locally |
| 34 | +1. Run `./your_program.sh` to run your program, which is implemented in |
| 35 | + `src/main/scala/Main.scala`. |
| 36 | +1. Commit your changes and run `git push origin master` to submit your solution |
| 37 | + to CodeCrafters. Test output will be streamed to your terminal. |
| 38 | + |
| 39 | +# Sample Databases |
| 40 | + |
| 41 | +To make it easy to test queries locally, we've added a sample database in the |
| 42 | +root of this repository: `sample.db`. |
| 43 | + |
| 44 | +This contains two tables: `apples` & `oranges`. You can use this to test your |
| 45 | +implementation for the first 6 stages. |
| 46 | + |
| 47 | +You can explore this database by running queries against it like this: |
| 48 | + |
| 49 | +```sh |
| 50 | +$ sqlite3 sample.db "select id, name from apples" |
| 51 | +1|Granny Smith |
| 52 | +2|Fuji |
| 53 | +3|Honeycrisp |
| 54 | +4|Golden Delicious |
| 55 | +``` |
| 56 | + |
| 57 | +There are two other databases that you can use: |
| 58 | + |
| 59 | +1. `superheroes.db`: |
| 60 | + - This is a small version of the test database used in the table-scan stage. |
| 61 | + - It contains one table: `superheroes`. |
| 62 | + - It is ~1MB in size. |
| 63 | +1. `companies.db`: |
| 64 | + - This is a small version of the test database used in the index-scan stage. |
| 65 | + - It contains one table: `companies`, and one index: `idx_companies_country` |
| 66 | + - It is ~7MB in size. |
| 67 | + |
| 68 | +These aren't included in the repository because they're large in size. You can |
| 69 | +download them by running this script: |
| 70 | + |
| 71 | +```sh |
| 72 | +./download_sample_databases.sh |
| 73 | +``` |
| 74 | + |
| 75 | +If the script doesn't work for some reason, you can download the databases |
| 76 | +directly from |
| 77 | +[codecrafters-io/sample-sqlite-databases](https://github.com/codecrafters-io/sample-sqlite-databases). |
0 commit comments