Index: django/db/backends/mysql/introspection.py
===================================================================
--- django/db/backends/mysql/introspection.py	(Revision 2501)
+++ django/db/backends/mysql/introspection.py	(Arbeitskopie)
@@ -1,7 +1,12 @@
 from django.db import transaction
 from django.db.backends.mysql.base import quote_name
 from MySQLdb.constants import FIELD_TYPE
+import re
 
+# parses a foreign key constraint from show create table
+#                                                               fieldname              other_field other_table
+fkey_parser = re.compile(r"\sCONSTRAINT `[^`]*` FOREIGN KEY \(`([^`]*)`\) REFERENCES `([^`]*)` \(`([^`]*)`\)")
+
 def get_table_list(cursor):
     "Returns a list of table names in the current database."
     cursor.execute("SHOW TABLES")
@@ -12,8 +17,45 @@
     cursor.execute("SELECT * FROM %s LIMIT 1" % quote_name(table_name))
     return cursor.description
 
+def _name_to_index(cursor, table_name):
+    """
+    Returns a dictionary of { field_name: field_index } for the given table.
+    Indexes are 0-based.
+    """
+    descr = get_table_description(cursor, table_name)
+    res = { }
+    i=0
+    for (name, type_code, display_size, internal_size, precision, scale, null_ok) in descr:
+        res[name] = i
+        i += 1
+    return res
+
 def get_relations(cursor, table_name):
-    raise NotImplementedError
+    """
+    Returns a dictionary of {field_index: (field_index_other_table, other_table)}
+    representing all relationships to the given table. Indexes are 0-based.
+    """
+    my_field_dict = _name_to_index(cursor, table_name)
+    constraints = [ ]
+    relations = {}
+    
+    # go through all constraints (== matches) and save these
+    cursor.execute("SHOW CREATE TABLE "+ table_name)
+    for row in cursor.fetchall():
+        pos = 0
+        while True:
+            match = fkey_parser.search(row[1], pos)
+            if match == None:
+                break
+            pos = match.end()
+            constraints.append(match.groups())
+    
+    # handle constraints. (can't do this in the loop above since we need the cursor here)
+    for (my_fieldname, other_table, other_field) in constraints:
+        other_field_index = _name_to_index(cursor, other_table)[other_field]
+        my_field_index = my_field_dict[my_fieldname]
+        relations[my_field_index] = (other_field_index, other_table)
+    return relations
 
 def get_indexes(cursor, table_name):
     """
