Skip to content

Commit 1afe295

Browse files
committed
adding note not to run prod server with sqlite
1 parent 4f39136 commit 1afe295

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

databases.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ <h1>Databases</h1>
9191
databases.</p>
9292
<p><a class="reference external" href="http://www.sqlite.org/">SQLite</a> is a database that is stored in a single
9393
file on disk. SQLite is built into Python but is only built for access
94-
by a single connection at a time.</p>
94+
by a single connection at a time. Therefore is highly recommended to not
95+
<a class="reference external" href="https://docs.djangoproject.com/en/dev/ref/databases/#database-is-locked-errors">run a production web application with SQLite</a>.</p>
9596
<div class="section" id="database-connections-with-python">
9697
<h2>Database connections with Python</h2>
9798
<p>To work with a relational database using Python, you need to use a code

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-02-01T13:24:17Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-02-01T13:33:46Z</updated></feed>

source/content/pages/databases.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ databases.
2626

2727
`SQLite <http://www.sqlite.org/>`_ is a database that is stored in a single
2828
file on disk. SQLite is built into Python but is only built for access
29-
by a single connection at a time.
29+
by a single connection at a time. Therefore is highly recommended to not
30+
`run a production web application with SQLite <https://docs.djangoproject.com/en/dev/ref/databases/#database-is-locked-errors>`_.
3031

3132

3233
Database connections with Python

0 commit comments

Comments
 (0)