Creating navigable texts with databases: Difference between revisions

From XPUB & Lens-Based wiki
(New page: == Core relational database concepts == * Tables: Rows and Columns * References paste: example data in tables * Cardinalities: one-to-many, many-to-many, one-to-one paste: examples == ...)
 
 
Line 1: Line 1:
== Core relational database concepts ==
== Core relational database concepts ==
* Tables: Rows and Columns
* Tables: Rows and Columns
Line 9: Line 8:
paste: examples
paste: examples


== Using an "ORM" like [[SQLAlchemy]] to link PYthon objects to relational tables ==
== Using an "ORM" like [[SQLAlchemy]] to link Python objects to relational tables ==

Latest revision as of 12:07, 30 May 2009

Core relational database concepts

  • Tables: Rows and Columns
  • References

paste: example data in tables

  • Cardinalities: one-to-many, many-to-many, one-to-one

paste: examples

Using an "ORM" like SQLAlchemy to link Python objects to relational tables