File tree Expand file tree Collapse file tree 4 files changed +19
-4
lines changed
Expand file tree Collapse file tree 4 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change @@ -304,10 +304,15 @@ <h1>Database</h1>
304304Alternative abstractions include graph databases where data is stored in
305305both nodes and edges of a graph, as well as key-value pair data stores based
306306on < 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
308312included with Python, creates a single file for all data per database. More
309313complicated databases such as Oracle, PostgreSQL, and MySQL are more tightly
310314coupled 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
Original file line number Diff line number Diff line change @@ -54,10 +54,15 @@ <h1>Database</h1>
5454Alternative abstractions include graph databases where data is stored in
5555both nodes and edges of a graph, as well as key-value pair data stores based
5656on < 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
5862included with Python, creates a single file for all data per database. More
5963complicated databases such as Oracle, PostgreSQL, and MySQL are more tightly
6064coupled 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
Original file line number Diff line number Diff line change @@ -12,7 +12,12 @@ Alternative abstractions include graph databases where data is stored in
1212both nodes and edges of a graph, as well as key-value pair data stores based
1313on `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
1621included with Python, creates a single file for all data per database. More
1722complicated databases such as Oracle, PostgreSQL, and MySQL are more tightly
1823coupled with the operating system after installation.
You can’t perform that action at this time.
0 commit comments