Skip to content

Commit 42c6f47

Browse files
committed
still more edits for clarity
1 parent ccd5359 commit 42c6f47

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use at your own risk. Issues and PRs welcome!
1111
SQLite is an embedded SQL database. It can be a good choice if
1212
your project meets some or all of these criteria:
1313

14-
- you can store the database file on fast, local storage
14+
- you store the database file on fast, local storage
1515
(not on a network drive)
1616
- the amount of data is relatively small (GBs, not TBs)
1717
- you're a data team of one with no need to share access to a database
@@ -20,9 +20,9 @@ systems for multi-user access or into BI/viz tools for analysis (i.e.
2020
you're doing ETL vs ELT)
2121
- your project is a proof of concept, to eventually be moved into
2222
another database or data warehouse platform
23-
- you want an easily accessible, open source method of building your data
24-
project that others can also deploy without the overhead/cost of a full RDBMS
25-
or data warehouse platform account (SQLite is included with python)
23+
- you want others to be able to deploy your data build without the
24+
overhead/cost of a full RDBMS or signing up for a data warehouse platform
25+
(SQLite is included with python and requires no installation)
2626

2727
SQLite can be surprisingly fast, despite the query optimizer not being as
2828
sophisticated as other databases and data warehouse platforms. Tip: realize

0 commit comments

Comments
 (0)