summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine/url.py
Commit message (Collapse)AuthorAgeFilesLines
* And thus ends support for Python 2.3.Jason Kirtland2008-07-151-2/+2
|
* r4695 merged to trunk; trunk now becomes 0.5.Mike Bayer2008-05-091-3/+3
| | | | 0.4 development continues at /sqlalchemy/branches/rel_0_4
* - remove some old cruftMike Bayer2008-02-161-14/+6
| | | | - deprecate ancient engine_descriptors() method
* introductory docstring bonanzaMike Bayer2007-12-181-1/+7
|
* engine.url cleanups [ticket:742]Jason Kirtland2007-08-291-31/+51
| | | | | | - translate_connect_args can now take kw args or the classic list - in-tree dialects updated to supply their overrides as keywords - tweaked url parsing in the spirit of the #742 patch, more or less
* - Connection.begin() no longer accepts nested=True, a possible source of ↵Jason Kirtland2007-08-191-9/+11
| | | | | | confusion as two forms of nesting are supported. SAVEPOINT-style nesting logic is now contained soley in begin_nested(). - Docstring love for the engine package. More is needed.
* added engine_from_config() function for helping to create_engine()Mike Bayer2007-08-141-1/+11
| | | | from an .ini style config
* switch (simple) occurences of 'if len(x)' to 'if x': find . -name '*.py' ↵Jonathan Ellis2007-08-031-1/+1
| | | | |xargs perl -pi.bak -e 's/if len\((\S+)\):/if $1:/' && find . -name '*.bak' |xargs rm
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵Mike Bayer2007-07-271-5/+3
| | | | maintenance branch in branches/rel_0_3.
* - the dialects within sqlalchemy.databases become a setuptoolsMike Bayer2007-04-171-8/+17
| | | | | | entry points. loading the built-in database dialects works the same as always, but if none found will fall back to trying pkg_resources to load an external module [ticket:521]
* - merged the "execcontext" branch, refactors engine/dialect codepathsMike Bayer2007-04-021-0/+4
| | | | | | | | | | | | | | | | | | | | - much more functionality moved into ExecutionContext, which impacted the API used by dialects to some degree - ResultProxy and subclasses now designed sanely - merged patch for #522, Unicode subclasses String directly, MSNVarchar implements for MS-SQL, removed MSUnicode. - String moves its "VARCHAR"/"TEXT" switchy thing into "get_search_list()" function, which VARCHAR and CHAR can override to not return TEXT in any case (didnt do the latter yet) - implements server side cursors for postgres, unit tests, #514 - includes overhaul of dbapi import strategy #480, all dbapi importing happens in dialect method "dbapi()", is only called inside of create_engine() for default and threadlocal strategies. Dialect subclasses have a datamember "dbapi" referencing the loaded module which may be None. - added "mock" engine strategy, doesnt require DBAPI module and gives you a "Connecition" which just sends all executes to a callable. can be used to create string output of create_all()/drop_all().
* - query strings in unicode URLs get keys encoded to asciiMike Bayer2007-03-301-0/+2
| | | | for **kwargs compat
* - added db modules to genned docstringsMike Bayer2007-03-181-2/+2
| | | | | | | - had to tweak out latest MS-SQL module change. cant do ImportErrors right now until module importing is moved to the connection phase across all dialects. - took out "his" from url docstrings - postgres doesnt do an import *
* decorated ImportError thrown when the <database>:// module isnt foundMike Bayer2007-03-061-2/+7
|
* migrated (most) docstrings to pep-257 format, docstring generator using ↵Mike Bayer2007-02-251-28/+46
| | | | | | straight <pre> + trim() func for now. applies most of [ticket:214], compliemnts of Lele Gaifax
* - small fix to BoundMetaData to accept unicode or string URLsMike Bayer2007-02-171-1/+1
|
* converted imports to absoluteMike Bayer2006-10-261-1/+1
|
* added docstrings for url, added to compiled documentationMike Bayer2006-10-121-4/+32
|
* - urls support escaped characters in passwords [ticket:281]Mike Bayer2006-08-221-1/+4
|
* adjument to regexp for parsing courtesy Barry WarsawMike Bayer2006-07-101-2/+2
|
* fixed 'port' attribute of URL to be an integer if present [ticket:209]Mike Bayer2006-06-151-2/+5
|
* switched generator to list comprehensionMike Bayer2006-06-011-1/+1
|
* implemented query string support in db urls, gets sent to dialect **kwargs, ↵Mike Bayer2006-06-011-2/+13
| | | | [ticket:196]
* fixed [ticket:188] updated changelogMike Bayer2006-05-291-1/+1
|
* skips blank argumentsMike Bayer2006-05-281-1/+1
|
* raises error for bad urlMike Bayer2006-05-281-1/+2
|
* merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1Mike Bayer2006-05-251-0/+81