Sem descrição

yulai.li 71c9bd8a75 Remove unused files há 7 anos atrás
django_tidb 0d5d3bdbfd Initial post há 7 anos atrás
.gitignore 0d5d3bdbfd Initial post há 7 anos atrás
LICENSE 0d5d3bdbfd Initial post há 7 anos atrás
MANIFEST 3e4a84ab8e Fix topic há 7 anos atrás
README.md 04caa7251f Update README.md há 7 anos atrás
setup.cfg 9a66ef2d82 Add setup.cfg for pypi há 7 anos atrás
setup.py 3e4a84ab8e Fix topic há 7 anos atrás

README.md

TiDB django backend

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

For now this package is tested in python 2.7 and django 1.8.x

Usage

Install Package

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

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