0

既存の MySQL データベースがあります。そのデータベースを使用して新しい django アプリケーションを作成したいと考えています。

Djangoに新しいモデルを追加するたびに「syncdb」を実行する必要があることを読みました。その時、フォーマットでデータベースに新しいテーブルを追加し<database_name>.<table_name>ます。そして、そのテーブルからデータをフェッチします。

django で既存のデータベースからデータを取得する正しい方法は何ですか?

これは私のモデルです:

django.dbインポートモデルから

class Users(models.Model):
    employee_id = models.CharField(max_length=30)
    def __unicode__(self):
        return self.employee_id
4

1 に答える 1

2

Use the Django model meta options to set db_table and db_column on your Models and Fields respectively. See these links for more info on how to use them: https://docs.djangoproject.com/en/dev/ref/models/options/#db-table https://docs.djangoproject.com/en/dev/ref/models/fields/#db-column

于 2013-02-08T07:37:37.537 に答える