|
8.4.3.0002
|
Django backend Features:
In this version, the django support is developed. Django_cubrid is the django backend for CUBRID Database.
- Overview
Django_cubrid is the official Django backend for CUBRID Database. When using Django web framework with CUBRID database, the django_cubrid backend should be used.
- Prerequisites
* Python
Being a Python Web framework, Django requires Python. It works with any Python version from 2.5 to 2.7 (due to backwards incompatibilities in Python 3.0, Django does not currently work with Python 3.0). So, when using django_cubrid, the Python version should be from 2.5 to 2.7.
* Django
Now only supports Django-1.4. It's tested in Django-1.4.2.
- Known issues
* The Django sqlflush command maybe failed because of the foreign constraints between database tables.
* After using the Django loaddata command, the insert SQL manipulation in the application maybe failed, becuse of the auto_increment field.
* Perhaps you may encounter the below warning: RuntimeWarning: DateTimeField received a naive datetime (2013-01-15 06:38:37.463000) while time zone support is active. The reason is that CUBRID dosen't support timezone. You can set "USE_TZ" to False in settings.py to avoid this warning.
- Refer to How to use Django with CUBRID for more infomation.
Changed and Enhanced Features:
- support designated charset in the key-value arguments of connect()
- add the mult-byte character support for the data in CUBRID
- support bind NULL value to sql statement
- support bind unicode string to sql statement
- support bind integer to sql statement
- add the iteration feature for cursor object.
- update the samples
- update the README file
- move the unit test cases into tests/
Fixed bugs:
- APIS-423: Access the major version and minor version from sys.version_info by indexing.
- APIS-426: The unicode keyword isn't supported in cursor() when using Python-3.x
- APIS-419: Add break in the switch in the _cubrid_ConnectionObject_schema_to_pyvalue().
|