- Aug 02, 2019
-
-
Daniel Klaffenbach authored
-
- May 17, 2019
-
-
Jannis Leidel authored
DCO 1.1 Signed-off-by:
Jannis Leidel <jannis@leidel.info>
-
- May 16, 2019
-
-
cclauss authored
Follows Python porting best practice [__use feature detection instead of version detection__](https://docs.python.org/3/howto/pyporting.html#use-feature-detection-instead-of-version-detection ). DCO 1.1 Signed-off-by:
Christian Clauss <cclauss@me.com>
-
- Apr 26, 2019
-
-
Saba Kauser authored
-
Saba Kauser authored
-
Saba Kauser authored
-
Saba Kauser authored
-
- Apr 23, 2019
-
-
Saba Kauser authored
* Update README.md * fix #388 * Update README.md * Update README.md * Update README.md
-
- Apr 16, 2019
-
-
Saba Kauser authored
* Update README.md * fix #388
-
- Apr 10, 2019
-
-
Saba Kauser authored
-
- Mar 14, 2019
-
-
Saba Kauser authored
* fix UnicodeDecodeError with ibm_db.get_option * bug fixes * Update ibm_db.c * install_name_tool for mac OS * review comments * fix space * fix typo * new test cases * copy README, LICENSE and CHANGES to ibm_db install path * add new line * change ibm_db version add tests, certs, config.py.sample to install, * Update README.md * Update CHANGES * Update README.md * Update README.md
-
- Mar 07, 2019
-
-
Saba Kauser authored
* fix UnicodeDecodeError with ibm_db.get_option * bug fixes * Update ibm_db.c * install_name_tool for mac OS * review comments * fix space * fix typo * new test cases * copy README, LICENSE and CHANGES to ibm_db install path * add new line
-
Kevin Adler authored
* Fix whitespace issues - Remove tabs and re-indent to 4 spaces to comply with PEP-8 - Remove trailing whitespace - Use Unix line endings. Users on Windows should set core.autocrlf: https://help.github.com/articles/dealing-with-line-endings/#platform-windows Signed-off-by:
Kevin Adler <kadler@us.ibm.com> * Remove unneded continuation markers Signed-off-by:
Kevin Adler <kadler@us.ibm.com>
-
Kevin Adler authored
* Add certs to MANIFEST.in This ensures that the certs in git are in the generated sdist which gets uploaded to PyPI. Otherwise, running pip install ibm_db will fail. * Ship config.py.sample instead of config.py
-
- Feb 25, 2019
-
-
Kevin Adler authored
This is now at https://github.com/ibmdb/python-ibmdb-django, no longer need code here.
-
Saba Kauser authored
* fix UnicodeDecodeError with ibm_db.get_option * bug fixes * Update ibm_db.c * install_name_tool for mac OS * review comments * fix space * fix typo
-
Kevin Adler authored
This directory has a copy of the tests which use Python 2 syntax, but the tests directory can now be run under Python 2, so this is redundant.
-
Kevin Adler authored
* Fix unpredictable returning bytes instead string for multiple result sets In ibm_db.next_result, a new ibm_db.IBM_DBStatement is created, but the s_use_wchar field is left uninitialized. This results in random behavior in _python_ibm_db_bind_fetch_helper when the column type is SQL_CHAR or SQL_VARCHAR. Fixes #373 Signed-off-by:
Kevin Adler <kadler@us.ibm.com> * Make ibm_db_next_result init match _ibm_db_new_stmt_struct Signed-off-by:
Kevin Adler <kadler@us.ibm.com>
-
- Jan 24, 2019
-
-
Kevin Adler authored
macOS installers of Python since 3.6 have not included certificates by default. Since it is rather difficult or obscure to set these up, just bundle the certs we need to download from https://public.dhe.ibm.com/ibmdl/export/pub/software/data/db2/drivers/odbc_cli/ Fixes #365
-
- Jan 15, 2019
-
-
Saba Kauser authored
-
- Dec 06, 2018
-
-
Saba Kauser authored
-
- Dec 05, 2018
-
-
Saba Kauser authored
* fix UnicodeDecodeError with ibm_db.get_option * bug fixes * Update ibm_db.c
-
- Nov 21, 2018
-
-
Saba Kauser authored
-
- Nov 09, 2018
-
-
Saba Kauser authored
-
- Oct 15, 2018
-
-
Henrik Loeser authored
-
- Oct 01, 2018
-
-
Kevin Adler authored
Currently, there's no way to run the tests due to limitations of Appveyor for running Linux Docker images on Windows and there's no DB2 Express-C Docker image for Windows. At least it can be verified that C code changes won't break under MSVC.
-
- Sep 28, 2018
-
-
Saba Kauser authored
-
Saba Kauser authored
-
Bimal Kumar Jha authored
-
Saba Kauser authored
-
- Sep 27, 2018
-
-
Kevin Adler authored
* Use print_function for py2/py3 compatibility * Make tests compatible with Python 2 and 3 * Ensure test_265_NoAffectedRows.py passes when never run previously * Use assert_expectf in test_warn.py * Ensure that tests.py returns non-zero status code if failures occur Additionally, greatly simplify the test runner. * Add Travis CI support * Skip tests which fail in CI * Add Travis CI badge
-
- Sep 22, 2018
-
-
Kevin Adler authored
Fixes #220 Signed-off-by:
Kevin Adler <kadler@us.ibm.com>
-
- Aug 16, 2018
-
-
Saba Kauser authored
-
Saba Kauser authored
-
Saba Kauser authored
-
- Aug 08, 2018
-
-
Saba Kauser authored
* 2.0.9 changes * tests folder for python 3.* * correct print
-
- Aug 06, 2018
-
-
Saba Kauser authored
-
- Aug 03, 2018
-
-
Saba Kauser authored
-
- Jul 23, 2018
-
-
Kevin McKenzie authored
* Fix the broken links I read and certify the DCO; as an employee of IBM, they own my work anyway. * Fix bug in setup.py where wrong cli file could be downloaded I work for IBM; this work is theirs, so I accept the contributor guidelines. Anyway, there’s a bug in the setup for ibm_db. Specifically, when you’re trying to install the command line library. You have function that looks through everything that’s returned from os.uname() to determine which one to download. That function looks through all the items returned, which includes (sysname,nodename, release, version, machine). The problem is that when you’re checking to determine which libraries to download for linux, you look at all those fields, and right now, the release string for RHEL zLinux is '3.10.0-862.el7.s390x’, so if you try installing ibm_db on zLinux, it downloads the cli_libraries for the x86 platform and the install fails. What I’m proposing you do instead is only look at the machine field to determine the architecture. I don’t have access to all those types of machines to validate that this is the correct solution, but it does work for zLinux. I’m assuming you have a place you can validate the other platforms. * Changing check for the SPARC architecture Signed-off-by:
Kevin McKenzie <kmckenzi@us.ibm.com>
-
- Jun 22, 2018
-
-
Kevin McKenzie authored
I read and certify the DCO; as an employee of IBM, they own my work anyway.
-