Skip to content

Commit 95d9a6e

Browse files
committed
updating with link to neo4j
1 parent 0b90cbf commit 95d9a6e

File tree

4 files changed

+29
-21
lines changed

4 files changed

+29
-21
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-27T07:56:42Z</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-28T08:39:39Z</updated></feed>

index.html

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,12 @@ <h2>Relational Databases</h2>
312312
included with Python, creates a single file for all data per database. More
313313
complicated databases such as Oracle, PostgreSQL, and MySQL are more tightly
314314
coupled with the operating system after installation.</p>
315+
<p><a class="reference external" href="http://www.postgresql.org/">PostgreSQL</a> and
316+
<a class="reference external" href="http://www.mysql.com/">MySQL</a> are two of the most common open source
317+
databases.</p>
318+
<p><a class="reference external" href="http://www.sqlite.org/">SQLite</a> is a database that is stored in a single
319+
file on disk. SQLite is built into Python but is only built for access
320+
by a single connection at a time.</p>
315321
</div>
316322
<div class="section" id="graph-databases">
317323
<h2>Graph Databases</h2>
@@ -323,17 +329,13 @@ <h2>Graph Databases</h2>
323329
business entity.</p>
324330
<p>A <em>property</em> represents information about nodes. For example, an entity
325331
representing a person could have a property of &quot;female&quot; or &quot;male&quot;.</p>
332+
<p><a class="reference external" href="http://www.neo4j.org/">Neo4j</a> is one of the most widely used graph
333+
databases and runs on the Java Virtual Machine stack.</p>
326334
</div>
327335
<div class="section" id="database-resources">
328336
<h2>Database resources</h2>
329337
<p><a class="reference external" href="http://db-engines.com/en/ranking">DB-Engines</a> ranks the most popular
330338
database management systems.</p>
331-
<p><a class="reference external" href="http://www.postgresql.org/">PostgreSQL</a> and
332-
<a class="reference external" href="http://www.mysql.com/">MySQL</a> are two of the most common open source
333-
databases.</p>
334-
<p><a class="reference external" href="http://www.sqlite.org/">SQLite</a> is a database that is stored in a single
335-
file on disk. SQLite is built into Python but is only built for access
336-
by a single connection at a time.</p>
337339
</div>
338340

339341
</section>

pages/database.html

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@ <h2>Relational Databases</h2>
6262
included with Python, creates a single file for all data per database. More
6363
complicated databases such as Oracle, PostgreSQL, and MySQL are more tightly
6464
coupled with the operating system after installation.</p>
65+
<p><a class="reference external" href="http://www.postgresql.org/">PostgreSQL</a> and
66+
<a class="reference external" href="http://www.mysql.com/">MySQL</a> are two of the most common open source
67+
databases.</p>
68+
<p><a class="reference external" href="http://www.sqlite.org/">SQLite</a> is a database that is stored in a single
69+
file on disk. SQLite is built into Python but is only built for access
70+
by a single connection at a time.</p>
6571
</div>
6672
<div class="section" id="graph-databases">
6773
<h2>Graph Databases</h2>
@@ -73,17 +79,13 @@ <h2>Graph Databases</h2>
7379
business entity.</p>
7480
<p>A <em>property</em> represents information about nodes. For example, an entity
7581
representing a person could have a property of &quot;female&quot; or &quot;male&quot;.</p>
82+
<p><a class="reference external" href="http://www.neo4j.org/">Neo4j</a> is one of the most widely used graph
83+
databases and runs on the Java Virtual Machine stack.</p>
7684
</div>
7785
<div class="section" id="database-resources">
7886
<h2>Database resources</h2>
7987
<p><a class="reference external" href="http://db-engines.com/en/ranking">DB-Engines</a> ranks the most popular
8088
database management systems.</p>
81-
<p><a class="reference external" href="http://www.postgresql.org/">PostgreSQL</a> and
82-
<a class="reference external" href="http://www.mysql.com/">MySQL</a> are two of the most common open source
83-
databases.</p>
84-
<p><a class="reference external" href="http://www.sqlite.org/">SQLite</a> is a database that is stored in a single
85-
file on disk. SQLite is built into Python but is only built for access
86-
by a single connection at a time.</p>
8789
</div>
8890

8991
<hr/>

source/content/pages/database.rst

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,15 @@ included with Python, creates a single file for all data per database. More
2222
complicated databases such as Oracle, PostgreSQL, and MySQL are more tightly
2323
coupled with the operating system after installation.
2424

25+
`PostgreSQL <http://www.postgresql.org/>`_ and
26+
`MySQL <http://www.mysql.com/>`_ are two of the most common open source
27+
databases.
28+
29+
`SQLite <http://www.sqlite.org/>`_ is a database that is stored in a single
30+
file on disk. SQLite is built into Python but is only built for access
31+
by a single connection at a time.
32+
33+
2534

2635
Graph Databases
2736
---------------
@@ -37,17 +46,12 @@ business entity.
3746
A *property* represents information about nodes. For example, an entity
3847
representing a person could have a property of "female" or "male".
3948

49+
`Neo4j <http://www.neo4j.org/>`_ is one of the most widely used graph
50+
databases and runs on the Java Virtual Machine stack.
51+
4052

4153
Database resources
4254
------------------
4355
`DB-Engines <http://db-engines.com/en/ranking>`_ ranks the most popular
4456
database management systems.
4557

46-
`PostgreSQL <http://www.postgresql.org/>`_ and
47-
`MySQL <http://www.mysql.com/>`_ are two of the most common open source
48-
databases.
49-
50-
`SQLite <http://www.sqlite.org/>`_ is a database that is stored in a single
51-
file on disk. SQLite is built into Python but is only built for access
52-
by a single connection at a time.
53-

0 commit comments

Comments
 (0)