Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Having issues with Django dbshell

Tags:

django

Please i dont know what is wrong, i used south for model migration, my question is, is it perfectly alright to use south or is the django traditional way i.e (manage.py dbshell) any better.

My second question, i tried using manage.py dbshell, but i get the message each time.

'sqlite3' is not recognized as an internal or external command, operable program or batch file.

Thanks.

like image 952
Time Avatar asked Dec 13 '22 08:12

Time


1 Answers

There's is dbshell support for sqlite actually, you just need to install command line utility (package named sqlite3 in Ubuntu).

like image 153
eXtractor Avatar answered Dec 27 '22 06:12

eXtractor