Re: DParser binaries on Win32 with Python 2.4?

2005-06-28 Thread woodsplitter
Christopher Subich wrote: > Compling the source on cygwin (with -mno-cygwin) succeeds in > compilation, but then attempting to install results in: > > \Python24\python.exe setup.py install > running install > running build > running build_py > creating build > creating build\lib.win32-2.4 > copying

Re: MS Compiler to build Python 2.3 extension

2005-06-30 Thread woodsplitter
MS Visual C++ 6 is indeed the compiler that the python.org distributions are built with, but MinGW works fine too. In fact, the code generated by MinGW-GCC 3.4.4 outpaces that generated by MSVC++ 6.0 by a considerable margin in some of my performance-critical extensions, and the size of the binari

Re: DBAPI Paramstyle

2005-03-26 Thread woodsplitter
Tim Roberts wrote: > In theory, using a paramstyle allows the query to be sent to the SQL > database backend and compiled like a program. Then, successive uses of the > same query can be done by sending just the parameters, instead of sending > the entire query string to be parsed and compiled aga