summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-01-25 15:36:09 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2014-01-25 15:49:53 -0500
commit267fe8bc5d7028df9087cd427df4cda07ef2140c (patch)
treeae641399e947fcce2281e24a6682b3c65830aaa2 /doc
parent91eec74a6cde1d5ba208d5ff464018112791bfa3 (diff)
downloadsqlalchemy-267fe8bc5d7028df9087cd427df4cda07ef2140c.tar.gz
- start building out very comprehensive docstrings for core functions
Diffstat (limited to 'doc')
-rw-r--r--doc/build/core/tutorial.rst2
-rw-r--r--doc/build/glossary.rst6
2 files changed, 8 insertions, 0 deletions
diff --git a/doc/build/core/tutorial.rst b/doc/build/core/tutorial.rst
index b785f9b9d..7570a5725 100644
--- a/doc/build/core/tutorial.rst
+++ b/doc/build/core/tutorial.rst
@@ -987,6 +987,8 @@ The concepts of creating SQL expressions have been introduced. What's left are
more variants of the same themes. So now we'll catalog the rest of the
important things we'll need to know.
+.. _coretutorial_bind_param:
+
Bind Parameter Objects
----------------------
diff --git a/doc/build/glossary.rst b/doc/build/glossary.rst
index 44aa58945..7603b8c4b 100644
--- a/doc/build/glossary.rst
+++ b/doc/build/glossary.rst
@@ -36,6 +36,12 @@ Glossary
in terms of one particular table alias or another, based on its position
within the join expression.
+ crud
+ An acronym meaning "Create, Update, Delete". The term in SQL refers to the
+ set of operations that create, modify and delete data from the database,
+ also known as :term:`DML`, and typically refers to the ``INSERT``,
+ ``UPDATE``, and ``DELETE`` statements.
+
descriptor
descriptors
In Python, a descriptor is an object attribute with “binding behavior”, one whose attribute access has been overridden by methods in the `descriptor protocol <http://docs.python.org/howto/descriptor.html>`_.