Programing/Django
-
[mysql] TroubleshootingPrograming/Django 2020. 4. 12. 11:27
access denied for user mysql https://superuser.com/questions/603026/mysql-how-to-fix-access-denied-for-user-rootlocalhost mysql how to fix Access denied for user 'root'@'localhost' Before I screw up something, when I login using $ mysql -u root -p, and show databases: +--------------------+ | Database | +--------------------+ | information_schema | | mysql ... superuser.com Reset root's password..
-
Integrate with MySQLPrograming/Django 2020. 3. 28. 11:50
1. 왜 MySQL 인가? 현업때 사용하던 sqlite3도 있지만 웹 어플리케이션 기획단계에서 가능하다면 많이 사용되고 있는 데이터베이스를 사용해 보고 싶었다. 2. 설치하기 아래 링크를 따라하면 간단하게 설치가 가능하다. https://django-mysql.readthedocs.io/en/latest/installation.html Requirements and Installation — Django-MySQL 3.3.0 documentation Extending your QuerySets Half the fun features are extensions to QuerySet. You can add these to your project in a number of ways, depending on w..