]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
fixed anchor tag
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 24 Jul 2006 16:28:31 +0000 (16:28 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 24 Jul 2006 16:28:31 +0000 (16:28 +0000)
doc/build/content/tutorial.txt

index 5a0ae8f4163bd77982b36a1dc58f6c7667fd9ec5..cd443653ecdf6565274d29fc3c8634175d38ff01 100644 (file)
@@ -83,7 +83,7 @@ Now, when we tell "metadata" about the tables in our database, we can issue CREA
 
 For the purposes of this tutorial, we will stick with "bound" objects, as it makes the code simpler and easier to read.  
 
-### Creating a Table {@name=table}
+### Creating a Table {@name=table_creating}
 
 With `metadata` as our established home for tables, lets make a Table for it:
 
@@ -211,7 +211,7 @@ Result sets also support iteration.  We'll show this with a slightly different f
     (3, u'Fred')
     (4, u'Harry')
 
-### Table Relationships
+### Table Relationships {@name=table_relationships}
 
 Lets create a second table, `email_addresses`, which references the `users` table.  To define the relationship between the two tables, we will use the `ForeignKey` construct.  We will also issue the `CREATE` statement for the table in one step: