Skip to content

Commit bc08f59

Browse files
committed
minor edits to README
1 parent 798b1f4 commit bc08f59

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
@@ -1,15 +1,16 @@
11

22
# dbt-sqlite
33

4-
A [SQLite](https://sqlite.org) adapter plugin for dbt (data build tool)
4+
A [SQLite](https://sqlite.org) adapter plugin for [dbt](https://www.getdbt.com/) (data build tool)
55

66
This is an experimental plugin. Please read these docs carefully and
77
use at your own risk. Issues and PRs welcome!
88

99
## The Use Case
1010

11-
SQLite is an embedded SQL database. It can be a good choice if
12-
your project meets some or all of these criteria:
11+
SQLite is an embedded SQL database. It comes included with most Python
12+
distributions and requires no installation or configuration. It can be
13+
a good choice if your project meets some or all of these criteria:
1314

1415
- you store the database file on fast, local storage
1516
(not on a network drive)
@@ -22,7 +23,6 @@ you're doing ETL vs ELT)
2223
another database or data warehouse platform
2324
- you want others to be able to deploy your data build without the
2425
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: materialize

0 commit comments

Comments
 (0)