Skip to content

Commit

Permalink
change Beta relese to Production
Browse files Browse the repository at this point in the history
  • Loading branch information
bimalkjha committed May 22, 2024
1 parent bfe0ba9 commit b0e7026
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Python support for IBM Db2 for LUW, IBM Informix and IBM Db2 for z/OS
Python support for IBM Db2 for LUW and IBM Db2 for z/OS
=========

## Python, DB-API components for IBM Db2 for LUW, IBM Informix and IBM Db2 for z/OS
## Python, DB-API components for IBM Db2 for LUW and IBM Db2 for z/OS

Provides Python interface for connecting to IBM Db2 for LUW, IBM Informix and IBM Db2 for z/OS
Provides Python interface for connecting to IBM Db2 for LUW and IBM Db2 for z/OS

<a name='components'></a>
## Components

1. The **ibm_db** contains:
* **ibm_db** driver: Python driver for IBM Db2 for LUW, IBM Informix and IBM Db2 for z/OS databases. Uses the IBM Data Server Driver for ODBC and CLI APIs to connect to IBM Db2 for LUW and Informix.
* **ibm_db_dbi**: Python driver for IBM Db2 for LUW and IBM Informix databases that complies to the DB-API 2.0 specification.
* **ibm_db** driver: Python driver for IBM Db2 for LUW and IBM Db2 for z/OS databases. Uses the IBM Data Server Driver for ODBC and CLI APIs to connect to IBM Db2 for LUW.
* **ibm_db_dbi**: Python driver for IBM Db2 for LUW that complies to the DB-API 2.0 specification.


## <a name="api"></a> API Documentation
Expand Down Expand Up @@ -345,7 +345,7 @@ conn = ibm_db.connect(connStr,'','')
- Connection to `Db2 for z/OS` or `Db2 for i`(AS400) Server using `ibm_db` driver from distributed platforms (Linux, Unix, Windows and MacOS) is not free. It requires either client side or server side license.
- Connection to `Db2 for LUW` or `Informix` Server using `ibm_db` driver is free.
- Connection to `Db2 for LUW` Server using `ibm_db` driver is free.
- `ibm_db` returns SQL1598N error in absence of a valid db2connect license. SQL1598N error is returned by the Db2 Server to client.
To suppress this error, Db2 server must be activated with db2connectactivate utility OR a client side db2connect license file must exist.
Expand Down
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -513,17 +513,20 @@ def print_exception( e, url):
setup( name = PACKAGE,
version = VERSION,
license = LICENSE,
description = 'Python DBI driver for DB2 (LUW, zOS, i5) and IDS',
description = 'Python DBI driver for DB2 (LUW, zOS, i5)',
author = 'IBM Application Development Team',
author_email = 'praveen.narayanappa1@ibm.com',
author_email = 'earamma.kanasavi@ibm.com',
url = 'http://pypi.python.org/pypi/ibm_db/',
download_url = 'http://code.google.com/p/ibm-db/downloads/list',
keywords = 'database DB-API interface IBM Data Servers DB2 Informix IDS',
classifiers = [(sys.version_info >= (3, )) and 'Development Status :: 4 - Beta' or 'Development Status :: 5 - Production/Stable',
keywords = 'database DB-API interface IBM Data Servers Db2',
classifiers = ['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: Unix',
'Operating System :: Linux',
'Operating System :: MacOS-x64',
'Operating System :: z/OS',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand All @@ -533,7 +536,7 @@ def print_exception( e, url):
'Programming Language :: Python :: 3.12',
'Topic :: Database :: Front-Ends'],

long_description = 'Python DBI driver for IBM Db2 for LUW, IBM Informix, IBM Db2 for iSeries(AS400) and IBM Db2 for z/OS servers',
long_description = open(readme).read(),
long_description_content_type = 'text/markdown',
platforms = 'Linux32/64, Win32/64, MacOS64, aix32/64, ppc32/64, sunamd32/64, sun32/64, ppc64le, z/OS',
ext_modules = ext_modules,
Expand Down

0 comments on commit b0e7026

Please sign in to comment.