You can enter the mysql console with: mysql -u root -p Then you can select a database show databases;use…
Author: ai7pz
A Django tutorial on Debian – part 5: implementing the frontend
Django logo (Photo credit: Wikipedia) In Django the essential part of any project consists in defining the data structures. Then,…
A Django tutorial on Debian – part 4: creating the web administration portal
Django logo (Photo credit: Wikipedia) .Django creates automatically a web admin portal for our web app. We just have to…
How to solve the duplicate entry errors in Django
Sometimes when saving an object in Django, one faces the following kind of errors: File “/home/alan/virtualenv_1/lib/python2.6/site-packages/MySQLdb/connections.py”, line 36, in defaulterrorhandler…
Discovering django on Debian – part 2: configuring django databases
MySQL (Photo credit: Wikipedia) In the previous Django tutorial, we left when a website run locally. Now, we will fill…