Mike Bayer
b673bdb02e
- fixed autoflush with count(), aggregates
...
- doc formatting bonanza
- delete() section to orm tutorial
2007-08-02 15:45:04 +00:00
Mike Bayer
b8b51fe437
- sessionmaker module is out, replaced with simple function in session.py
...
- scoping/class instrumenting behavior of sessionmaker moved into new scoping module
which implements scoped_session() (subject to potential name change)
- SessionContext / assignmapper are deprecated, replaced with scoped_session()
2007-08-02 05:42:49 +00:00
Mike Bayer
f75faa7cb4
- SessionContext and assignmapper are deprecated
...
- Session function is removed
- all replaced with new sessionmaker() function. description at:
http://www.sqlalchemy.org/trac/wiki/WhatsNewIn04#create_sessionSessionContextassignmapperDeprecated
2007-08-01 20:52:26 +00:00
Jason Kirtland
2f14107999
Sort methods by __init__, name, __names__
...
Supply a little default docstring for __init__
Don't document __repr__, __str__, __getstate__, ...
2007-08-01 17:51:10 +00:00
Jason Kirtland
18dab5baf0
Added EXT_CONTINUE and EXT_STOP for MapperExtensions; EXT_PASS is a synonym for EXT_CONTINUE.
...
Repointed docs and examples to EXT_CONTINUE
2007-08-01 07:18:50 +00:00
Jason Kirtland
b036af2871
Expanded docstring docs for pool hooks.
2007-08-01 06:15:16 +00:00
Jason Kirtland
cb12333dd3
Ignore __weakref__ methods. Not sure why they're bubbling up here- a Python 2.5 artifact?
2007-08-01 06:14:26 +00:00
Jason Kirtland
ed6e7c3896
Removed trailing slash from sys.path manipulation [ticket:700]
2007-08-01 00:22:51 +00:00
Jason Kirtland
45a9b4b175
Tweak ([ticket:673])
2007-08-01 00:18:38 +00:00
Mike Bayer
098b471c88
tweaks
2007-07-31 16:56:26 +00:00
Mike Bayer
e32d37081f
intro...
2007-07-31 15:24:10 +00:00
Mike Bayer
ac541261db
crank
2007-07-30 21:59:09 +00:00
Mike Bayer
8f63079fce
more crankage....
2007-07-30 21:30:44 +00:00
Mike Bayer
2ef7d4173f
crankin....
2007-07-30 20:03:43 +00:00
Mike Bayer
6c89138199
docs in progress, new ORM tutorial
2007-07-30 17:44:35 +00:00
Mike Bayer
23d1698acc
doc reorganize; greater emphasis on overview (just like with 0.1), but still with tutorials (TODO).
2007-07-30 05:31:40 +00:00
Mike Bayer
cf633e2975
- added Session constructor which turns autoflush/transactional on
...
- Session is used by unitofwork unit test now as well as session.py tests
- fixes to table/schema reflection broken last night
- doc updates
- other unittest fixes
2007-07-29 20:30:32 +00:00
Mike Bayer
33fa7019fb
- removed auto_close_cursors and disallow_open_cursors arguments from Pool;
...
reduces overhead as cursors are normally closed by ResultProxy and Connection.
2007-07-29 00:42:49 +00:00
Jonathan Ellis
274ec6d6ed
mention include_columns in docs; see #561
...
(sorry Mike, I did have a unit test but didn't commit it somehow)
2007-07-27 22:36:37 +00:00
Gaëtan de Menten
7252e3d879
Fixed that old inconsistency (person VS employee) in the joined-table inheritance docs
2007-07-27 08:20:34 +00:00
Mike Bayer
ed4fc64bb0
merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to maintenance branch in branches/rel_0_3.
2007-07-27 04:08:53 +00:00
Mike Bayer
cb45629abc
edits
2007-07-22 20:19:49 +00:00
Mike Bayer
364a7a7824
edits
2007-07-22 03:23:41 +00:00
Mike Bayer
4a19dac458
info on db-specific types
2007-07-19 16:59:21 +00:00
Gaëtan de Menten
6506939352
- fixed max identifier length on postgres (63) [ticket:571]
...
- fixed doc typo ("in_" operator)
- misc indent stuff
2007-07-17 09:00:25 +00:00
Mike Bayer
40ded34819
fixes
2007-07-15 16:27:42 +00:00
Mike Bayer
5804e82215
- added friendlier error checking for query.get() with too-short pk
...
- more docs
2007-07-15 15:11:05 +00:00
Mike Bayer
9cc7d73ea1
- more docs
...
- got from_statement() to actually work with query, tests were not covering
- added auto-labeling of anonymous columns sent to add_column(), tests
2007-07-15 06:02:03 +00:00
Mike Bayer
d92489fd2a
- more docs
...
- some more query tests
- removed warnings from testbase to appease the buildbots
2007-07-15 05:23:32 +00:00
Mike Bayer
3a9af19d14
- columns can be overridden in a reflected table with a "key"
...
attribute different than the column's name, including for primary key
columns [ticket:650]
- more docs
2007-07-15 04:50:11 +00:00
Mike Bayer
ecc963ff88
- more docs
...
- query will unique tupled results
- fixed [ticket:605] which is for psycopg1 anyway...
2007-07-15 03:52:13 +00:00
Mike Bayer
751d2b340b
more query methods, overhauliung docs for forwards 0.4 method
2007-07-15 01:50:27 +00:00
Mike Bayer
44289e375b
changed password field length to 15 to fix [ticket:656]
2007-07-14 18:30:43 +00:00
Mike Bayer
b9a59f5cef
discourage usage of always_refresh
2007-07-07 13:35:34 +00:00
Mike Bayer
e490d67d2d
edits
2007-07-07 03:38:42 +00:00
Mike Bayer
eab3914085
oh wow, confused "implicit" with "connectionless"
2007-07-07 03:26:25 +00:00
Mike Bayer
3372fa5ca3
edits
2007-07-07 02:24:12 +00:00
Mike Bayer
6216ea8597
more edits
2007-07-07 00:03:06 +00:00
Mike Bayer
677247f28c
fixes
2007-07-06 18:57:03 +00:00
Mike Bayer
bcbcc391c5
- rewrote dbengine doc
...
- some changes to metadata doc, no Bound/Dynamic metadata mentioned
- fixed --file flag in genhtml.py
2007-07-06 17:39:05 +00:00
Jason Kirtland
c87304874c
Tweak docs, very minor DMD compatability tweak
2007-07-06 17:28:45 +00:00
Jason Kirtland
177d30cc01
- Deprecated DynamicMetaData- use ThreadLocalMetaData or MetaData instead
...
- Deprecated BoundMetaData- use MetaData instead
- Removed DMD and BMD from documentation
2007-07-06 00:58:09 +00:00
Mike Bayer
8692ce1e7a
css tweak
2007-07-04 17:11:03 +00:00
Mike Bayer
2b1a7aa593
eek! wrong tranasctional command for like, years now....
2007-06-28 16:36:09 +00:00
Mike Bayer
5cd9662399
added extra session.clear() to enable example to work
2007-06-28 15:06:36 +00:00
Mike Bayer
440701c82d
- finally figured out how to get setuptools version in, available
...
as sqlalchemy.__version__ [ticket:428]
2007-06-19 17:46:57 +00:00
Mike Bayer
d518d49d8e
added interfaces package to orm
2007-06-02 19:09:30 +00:00
Mike Bayer
1aa8b0eea7
0.3.8 version, removed old runhtml script
2007-05-31 17:26:32 +00:00
Mike Bayer
b9e6706e68
fix typo
2007-05-22 16:52:38 +00:00
Gaëtan de Menten
aeecb08490
correct typo
2007-05-18 18:26:46 +00:00