Skip to content

Commit 80fd7e0

Browse files
SimonCWtiangolo
andauthored
📝 Clarify description of in-memory SQLite database in docs/tutorial/create-db-and-table.md (#601)
Co-authored-by: Sebastián RamĂ­rez <[email protected]>
1 parent 1acb683 commit 80fd7e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎docs/tutorial/create-db-and-table.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ Each supported database has it's own URL type. For example, for **SQLite** it is
220220
* `sqlite:///databases/local/application.db`
221221
* `sqlite:///db.sqlite`
222222

223-
For SQLAlchemy, there's also a special one, which is a database all *in memory*, this means that it is deleted after the program terminates, and it's also very fast:
223+
SQLite supports a special database that lives all *in memory*. Hence, it's very fast, but be careful, the database gets deleted after the program terminates. You can specify this in-memory database by using just two slash characters (`//`) and no file name:
224224

225225
* `sqlite://`
226226

0 commit comments

Comments
 (0)