diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-08-06 18:29:37 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-08-06 18:29:37 -0400 |
commit | 4abcc0da839a57513f18a7a9ea7ee6918d48e4b1 (patch) | |
tree | e29e41dc50bd497b5be4cfa97f6cac65216243d4 /lib/sqlalchemy/engine | |
parent | e57e1482a6c6e280065b929557f06fed2cd5624f (diff) | |
download | sqlalchemy-4abcc0da839a57513f18a7a9ea7ee6918d48e4b1.tar.gz |
- rework tutorial to be all declarative, all the time
- add detail to declarative docs about base classes
Diffstat (limited to 'lib/sqlalchemy/engine')
-rw-r--r-- | lib/sqlalchemy/engine/__init__.py | 6 | ||||
-rw-r--r-- | lib/sqlalchemy/engine/base.py | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/lib/sqlalchemy/engine/__init__.py b/lib/sqlalchemy/engine/__init__.py index eab462032..0d091bb11 100644 --- a/lib/sqlalchemy/engine/__init__.py +++ b/lib/sqlalchemy/engine/__init__.py @@ -130,6 +130,12 @@ def create_engine(*args, **kwargs): will establish the first actual DBAPI connection when this request is received. The :func:`.create_engine` call itself does **not** establish any actual DBAPI connections directly. + + See also: + + :ref:`engines_toplevel` + + :ref:`connections_toplevel` :param assert_unicode: Deprecated. A warning is raised in all cases when a non-Unicode object is passed when SQLAlchemy would coerce into an encoding diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index 04c14c2b7..a5f5ae223 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -2068,6 +2068,12 @@ class Engine(Connectable, log.Identified): An :class:`.Engine` object is instantiated publically using the :func:`~sqlalchemy.create_engine` function. + See also: + + :ref:`engines_toplevel` + + :ref:`connections_toplevel` + """ _execution_options = util.immutabledict() |