[sqlalchemy] Re: NULLS FIRST/LAST support?

2007-08-10 Thread Oleg Deribas
Hello, Michael Bayer said the following on 09.08.2007 22:53: OK just to double check, the syntax looks like: SELECT * FROM sometable ORDER BY foo NULLS FIRST SELECT * FROM sometable ORDER BY foo DESC NULLS LAST Yes. ? i.e. is DESC/ASC before the NULLS part ? or doesn't matter ? It

[sqlalchemy] Re: NULLS FIRST/LAST support?

2007-08-09 Thread Oleg Deribas
Hello, Michael Bayer said the following on 09.08.2007 17:09: we could add an operator to the oracle module if that helps, something like (assume 0.4 usage) order_by=oracle.nullsfirst(mycolumn.desc()) , i guess that is important if youre applying ordering to relations which get

[sqlalchemy] Re: NULLS FIRST/LAST support?

2007-08-09 Thread Oleg Deribas
Hello, Michael Bayer said the following on 09.08.2007 20:50: ah that changes things...if NULLS FIRST/LAST is part of ANSI sql then id feel comfortable adding a core construct, like order_by=column.nullsfirst(). Here is what I've found in SQL2003 draft: In addition, NULLS FIRST or NULLS

[sqlalchemy] Re: Column name mapping problem in 0.3.7 (firebird)

2007-05-09 Thread Oleg Deribas
Hello, Michael Bayer said the following on 08.05.2007 20:57: overheard at firebird developer meeting: hey, whats the longest table names should be ? obviously, 31 characters. hey yeah. 31 does it for me. brilliant ! Just for reference. Here is (slightly outdated) information on

[sqlalchemy] Re: PDF Documentation?

2007-04-15 Thread Oleg Deribas
Hello, gDog said the following on 15.04.2007 2:39: I have just fired up SQLAlchemy and went through the tutorial on the web. I would like to print the full manual (I just learn better with a hard copy on hand). Is there a PDF or other printable copy of the manual?

[sqlalchemy] Re: Firebird backend

2007-04-01 Thread Oleg Deribas
Hello, Lele Gaifax said the following on 01.04.2007 2:36: I checked and the role argument is correctly seen by the FB backend, and your script works for me *when* accessing the database as LELE, but effectively not when using SYSDBA, *if* with fails you mean that you get NONE as result.

[sqlalchemy] Re: py2exe sqlalchemy

2007-02-08 Thread Oleg Deribas
Hello, Something Special said the following on 08.02.2007 13:22: they should put this help somewhere on main page, or fix it:) Michael, would you accept such patch? -- Oleg --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[sqlalchemy] Re: py2exe sqlalchemy

2007-02-06 Thread Oleg Deribas
Hello, Something Special said the following on 06.02.2007 18:07: How to py2exe it? 1. Install SQLAlchemy with --always-unzip 2. Rename sqlalchemy's logging.py to log.py 3. Search/replace logging with log in all sqlalchemy's sources except log.py itself -- Oleg

[sqlalchemy] Re: SQLAlchemy and py2exe problem

2006-12-24 Thread Oleg Deribas
Hello, Karlo Lozovina said the following on 19.12.2006 6:01: I'm working with SQLAlchemy 0.3.3, Python 2.5 and py2exe 0.6.5. This simple scripts fails when I run test.exe: ImportError: No module named logging Have you solved this problem? I want to try to use py2exe also. -- Oleg