Sin descripción

ChangkeYang 06abff228a Merge branch 'master' of github.com:blacktear23/django_tidb hace 5 años
django_tidb 06abff228a Merge branch 'master' of github.com:blacktear23/django_tidb hace 5 años
.gitignore 306f32f63e Refactor to use django's mysql backend code and just change unsupported features hace 7 años
LICENSE 0d5d3bdbfd Initial post hace 7 años
MANIFEST f8eddf9551 Update MANIFEST hace 7 años
Makefile 48ff5ce0c0 Add Makefile for publish package hace 6 años
README.md b615083c15 Update README and update setup.py hace 7 años
setup.cfg 9a66ef2d82 Add setup.cfg for pypi hace 7 años
setup.py 18528d6131 Update version number hace 6 años

README.md

TiDB django backend

This library is based on django’s mysql backend and change some logic and support features to fit TiDB.

This package is tested in python 2.7 and django 1.8 ~ 1.11

Usage

Install Package

clone and install

# git clone https://github.com/blacktear23/django_tidb.git
# cd tidb_django
# python setup.py install

install from pip

pip install django_tidb

Update settings.py

DATABASES = {
    'default': {
        'ENGINE': 'django_tidb.tidb',
        'NAME': 'database',
        'USER': 'username',
        'PASSWORD': 'password',
        'HOST': '127.0.0.1',
        'PORT': 4000,
    }
}

Different Between MySQL

  • TiDB not support foreign key
  • TiDB require delete index before drop column
  • TiDB not support CASCADE key word when drop column or drop table