Metadata-Version: 2.0
Name: django-informixdb
Version: 0.1.3
Summary: A database driver for Django to connect to an informix db
Home-page: https://github.com/leowa/django_informixdb
Author: Andy Zhang
Author-email: leowa@outlook.com
License: APLv2
Keywords: django informix
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: django (==1.9.6)
Requires-Dist: informixdb
Provides-Extra: dev
Requires-Dist: check-manifest; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'

django\_informixdb
==================

A database driver for Django to connect to an Informix database via
informixdb python module.

**Some limitations**:
- Do not support default values



Configure local environment
---------------------------

The following environment variable should exist: - INFORMIXDIR -
INFORMIXSERVER - INFROMIXSQLHOSTS
django\_informixdb
==================

A database driver for Django to connect to an Informix database via
informixdb python module.

**Some limitations**:
- Do not support default values



Configure local environment
---------------------------

The following environment variable should exist: - INFORMIXDIR -
INFORMIXSERVER - INFROMIXSQLHOSTS

You need to create a sqlhosts file configuring remote/local informix
server connection information like the following:

::

    ifxserver    onsoctcp     xxx.yy.com  1234
    local_ifxserver1    onsoctcp     *  4567

Configure custom.py
-------------------

Django’s custom.py require the following format to connect to a informix
db:

::
    'default': {
        'ENGINE': 'django_informixdb',
        'NAME': 'd_1463994398130014',
        'SERVER': 'ifxserver1',
        'USER' : 'xblebtlh',
        'PASSWORD': 'BbynQOHesR',
    }


Corresponding informixdb connection:
---------------------------------
::
    conn = informixdb.connect('d_1463994398130014@ifxserver1', 'xblebtlh', 'BbynQOHesR')

You need to create a sqlhosts file configuring remote/local informix
server connection information like the following:

::

    ifxserver    onsoctcp     xxx.yy.com  1234
    local_ifxserver1    onsoctcp     *  4567

Configure custom.py
-------------------

Django’s custom.py require the following format to connect to a informix
db:

::
    'default': {
        'ENGINE': 'django_informixdb',
        'NAME': 'd_1463994398130014',
        'SERVER': 'ifxserver1',
        'USER' : 'xblebtlh',
        'PASSWORD': 'BbynQOHesR',
    }


Corresponding informixdb connection:
---------------------------------
::
    conn = informixdb.connect('d_1463994398130014@ifxserver1', 'xblebtlh', 'BbynQOHesR')


