Skip to content

Commit 41f8917

Browse files
committed
updating database section
1 parent 16ef3f0 commit 41f8917

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

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>2013-11-25T11:47:22Z</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>2013-11-26T10:36:47Z</updated></feed>

index.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,10 +304,15 @@ <h1>Database</h1>
304304
Alternative abstractions include graph databases where data is stored in
305305
both nodes and edges of a graph, as well as key-value pair data stores based
306306
on <a class="reference external" href="http://en.wikipedia.org/wiki/Hash_table">hash map</a> data structures.</p>
307-
<p>Storage schemes for databases vary in complexity. SQLite, a database
307+
<div class="section" id="relational-databases">
308+
<h2>Relational Databases</h2>
309+
<p>Relational databases store all data in a series of tables. Interconnections
310+
between the tables are specified as <em>foreign keys</em>.</p>
311+
<p>Databases storage implementations vary in complexity. SQLite, a database
308312
included with Python, creates a single file for all data per database. More
309313
complicated databases such as Oracle, PostgreSQL, and MySQL are more tightly
310314
coupled with the operating system after installation.</p>
315+
</div>
311316
<div class="section" id="database-resources">
312317
<h2>Database resources</h2>
313318
<p><a class="reference external" href="http://db-engines.com/en/ranking">DB-Engines</a> ranks the most popular

pages/database.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,15 @@ <h1>Database</h1>
5454
Alternative abstractions include graph databases where data is stored in
5555
both nodes and edges of a graph, as well as key-value pair data stores based
5656
on <a class="reference external" href="http://en.wikipedia.org/wiki/Hash_table">hash map</a> data structures.</p>
57-
<p>Storage schemes for databases vary in complexity. SQLite, a database
57+
<div class="section" id="relational-databases">
58+
<h2>Relational Databases</h2>
59+
<p>Relational databases store all data in a series of tables. Interconnections
60+
between the tables are specified as <em>foreign keys</em>.</p>
61+
<p>Databases storage implementations vary in complexity. SQLite, a database
5862
included with Python, creates a single file for all data per database. More
5963
complicated databases such as Oracle, PostgreSQL, and MySQL are more tightly
6064
coupled with the operating system after installation.</p>
65+
</div>
6166
<div class="section" id="database-resources">
6267
<h2>Database resources</h2>
6368
<p><a class="reference external" href="http://db-engines.com/en/ranking">DB-Engines</a> ranks the most popular

source/content/pages/database.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ Alternative abstractions include graph databases where data is stored in
1212
both nodes and edges of a graph, as well as key-value pair data stores based
1313
on `hash map <http://en.wikipedia.org/wiki/Hash_table>`_ data structures.
1414

15-
Storage schemes for databases vary in complexity. SQLite, a database
15+
Relational Databases
16+
--------------------
17+
Relational databases store all data in a series of tables. Interconnections
18+
between the tables are specified as *foreign keys*.
19+
20+
Databases storage implementations vary in complexity. SQLite, a database
1621
included with Python, creates a single file for all data per database. More
1722
complicated databases such as Oracle, PostgreSQL, and MySQL are more tightly
1823
coupled with the operating system after installation.

0 commit comments

Comments
 (0)