Anthony Tuininga
e6484f98a2
Add support for searching lib32 or lib64 depending on whether the host is
...
32-bit or 64-bit. Thanks to Joe Shaw for the patch.
2009-06-24 16:12:45 +00:00
Anthony Tuininga
a31a9b3ad8
The 64-bit Windows instant client uses a different library directory than the
...
full client does.
2009-06-10 18:53:25 +00:00
Anthony Tuininga
a4a517ed4c
Preparing to release version 5.0.2.
2009-05-19 04:15:41 +00:00
Anthony Tuininga
6751ce7e88
The actual location of the libraries is in the OCI subdirectory, not SDK.
2009-05-06 18:56:51 +00:00
Anthony Tuininga
aeb37e44fb
Now that the library path is being calculated exactly there is no need to
...
include the lib subdirectory as before.
2009-04-30 02:09:21 +00:00
Anthony Tuininga
6d427015b3
Included the MSVC library path as requested by Jason Coombs.
2009-04-21 22:14:50 +00:00
Anthony Tuininga
97a951102d
Preparing to release version 5.0.1.
2009-02-16 17:38:42 +00:00
Anthony Tuininga
78d619cfb6
Added initial support for database change notification.
2009-01-07 21:13:49 +00:00
Anthony Tuininga
622f33f911
Added additional classifiers to make it clear that cx_Oracle supports version 3
...
of Python as recommended by Amaury Forgeot d'Arc.
2008-12-15 15:02:19 +00:00
Anthony Tuininga
e123e93576
Preparing to release version 5.0.
2008-12-11 21:01:18 +00:00
Anthony Tuininga
ce74a5db5b
Reorganized README.txt and added new file BUILD.txt based on an initial patch
...
from Corey Gaff.
2008-12-05 05:09:39 +00:00
Anthony Tuininga
d802a08e9b
Calculate whether or not a 64-bit platform is in use properly.
2008-11-29 18:54:41 +00:00
Anthony Tuininga
231377127e
Added support for interval day to second in Oracle, represented as Python
...
datetime.timedelta objects.
2008-11-25 15:59:16 +00:00
Anthony Tuininga
802fa9b617
Added additional link arguments for Cygwin as requested by Rob Gillen.
2008-10-29 00:24:11 +00:00
Anthony Tuininga
4d2a8c57de
Dropped support for Python 2.3.
2008-10-16 04:19:14 +00:00
Anthony Tuininga
82747e408c
Added support for establishing connections to Oracle using Unicode while
...
retaining support for establishing connections using ASCII strings.
2008-10-10 20:06:34 +00:00
Anthony Tuininga
c424a823a8
First cut at adding support for full unicode which is required by Python 3 but
...
the code is structured so that this can be done with Python 2.x as well if
desired; the only thing currently working is the determination of error
messages.
2008-10-10 04:18:05 +00:00
Anthony Tuininga
ad280fecc5
Make use of struct.calcsize rather than sys.maxint which is dropped in Python
...
3.0.
2008-10-04 03:29:40 +00:00
Anthony Tuininga
817186b16e
Raise errors as instances of setup errors, not strings in order to provide
...
initial support for Python 3.0.
2008-10-02 17:28:23 +00:00
Anthony Tuininga
2737ae2f12
Clean up checking for platform and versions when checking for bdist_wininst and
...
bdist_msi - initial patch supplied by Amaury Forgeot d'Arc.
2008-10-02 17:09:47 +00:00
Anthony Tuininga
d1e5fa3737
Avoid overwriting the Oracle home value with None by the method that determines
...
if a valid Oracle home has been specified.
2008-09-29 14:29:11 +00:00
Anthony Tuininga
2938d07b35
Account for the situation where the directory passed in is the binary diretory
...
but the libraries are in a parallel directory.
2008-09-26 21:17:20 +00:00
Anthony Tuininga
33a2280ad1
Tweak setup.py to calculate the Oracle version and library directory up front
...
rather than during the actual build which allows correct specification of the
RPATH and clears up potential confusion since all of the code for checking such
things is now in one place.
2008-09-26 21:13:36 +00:00
Anthony Tuininga
edf5b6dd9a
No need to reset the extraLinkArgs and doing so prevents simple modification
...
where desired as expressed by Christian Zagrodnick.
2008-08-28 13:49:10 +00:00
Anthony Tuininga
58c10b68ae
Inital cut of support for DRCP and events mode as requested by Christopher
...
Jones.
2008-07-06 05:08:01 +00:00
Anthony Tuininga
93490d971d
Removed support for Oracle 8i since Oracle support for it was dropped long
...
ago and adding support for Oracle 11g features would be very difficult
while attempting to retain Oracle 8i support.
2008-06-28 04:44:04 +00:00
Anthony Tuininga
a77bc411c6
Added proper detection for the instant client on Mac OS X as recommended by
...
Martijn Pieters.
2008-06-27 13:51:56 +00:00
Anthony Tuininga
c60c1fdf69
Ensure that in Python 2.3 and 2.4 the bdist_wininst command renames the target
...
as well as in Python 2.5.
2008-06-11 03:51:05 +00:00
Anthony Tuininga
2c07de41fd
Preparing to release 4.4.
2008-06-06 15:31:18 +00:00
Anthony Tuininga
d11dcba0ea
Attempt to use setuptools if possible and fall back to normal distutils if
...
setuptools is not found or installed.
2008-05-29 13:48:14 +00:00
Anthony Tuininga
e7dcdff522
Added line to make it easier to support setup tools if desired.
2008-05-28 20:46:00 +00:00
Anthony Tuininga
d32456f88d
Fix support for packaging documentation after switching to reST format.
2008-05-28 20:43:47 +00:00
Anthony Tuininga
239b5a6695
Cygwin is on Windows so should be treated in the same way as noted by Matthew
...
Cahn.
2008-04-09 04:47:19 +00:00
Anthony Tuininga
99abfa0e4a
Add support for recognizing the Oracle instant client and building with it;
...
modify the libraries used for locating an Oracle installation on Windows to
those libraries that are commonly found in the full client as well as the
instant client.
2008-03-26 14:53:12 +00:00
Anthony Tuininga
1cea81e08d
Use the shared library libclntsh.so to determine which Oracle version is in use
...
rather than the static client libraries which are not shipped with Oracle XE
or the instant client; thanks to Catherine Devlin for pointing this out and
providing an initial patch. In addition, allow for the situation where the
instant client is installed as Linux RPMs which use different locations than
the standard client in that situation.
2007-10-13 03:01:33 +00:00
Anthony Tuininga
1d057bcd5f
Remove duplicate keyword argument.
2007-10-02 22:40:45 +00:00
Anthony Tuininga
6d1d519584
Add all metadata into the setup configuration script.
2007-10-02 04:03:32 +00:00
Anthony Tuininga
4ab1a9e2e9
Added some samples for more advanced techniques.
2007-10-01 20:33:54 +00:00
Anthony Tuininga
3033c3d554
Tweak the building of RPM packages in order to include the Oracle version and
...
Python version in the name.
2007-09-29 22:07:26 +00:00
Anthony Tuininga
87df7241c8
The bdist_msi command is only available in Python 2.5 and up.
2007-09-24 18:35:20 +00:00
Anthony Tuininga
183826cf6f
Use qualified wildcards as otherwise Windows includes files from the .svn
...
directories, for example. Also remove dependency on existing MANIFEST file in
the setup script.
2007-09-21 13:43:19 +00:00
Anthony Tuininga
7dc371db7a
Rearrange code in order to make the dependent projects build easier.
2007-09-15 23:56:24 +00:00
Anthony Tuininga
510b66a21a
Make the search for the lib32 and lib64 directories automatic for all
...
platforms.
2007-09-13 04:42:14 +00:00
Anthony Tuininga
0f5f55d2e6
Only include bdist_wininst and bdist_msi on Windows.
2007-09-13 04:40:26 +00:00
Anthony Tuininga
2ea38919cf
Add global statements simply to make running the setup script within another
...
setup script (cx_OracleDBATools) happy.
2007-09-11 16:41:35 +00:00
Anthony Tuininga
562359d339
Tweak setup.py to create a directory containing the Oracle version in addition
...
to the Python version since they are quite different.
2007-09-10 22:40:21 +00:00
Anthony Tuininga
dd3088cf8a
Put the options directly in the setup.py rather than in setup.cfg.
2007-09-05 04:53:12 +00:00
Anthony Tuininga
e0d607ce77
Remove unnecessary dependency on win32api since the gcc compiler is perfectly
...
capable of linking against DLLs directly.
2007-08-22 19:54:19 +00:00
Anthony Tuininga
f5255a1f0d
Use depends directive to indicate which source files the module depends upon
...
(but does not compile directly).
2007-08-14 17:34:33 +00:00
Anthony Tuininga
203d04c204
Use the SourceForge web site now since the Starship site appears to be no
...
longer actively maintained.
2007-07-29 05:06:22 +00:00