On Wed, Aug 26, 2009 at 9:11 AM, Arul <aruln...@gmail.com> wrote:

>
> I tried with reopening the command prompt after setting the path via
> GUI and
> also I tried with setting the path in the active command prompt, but
> it didnt work.
> Anyway if i give "sqlite3" in the command prompt, it gives me the
> sqlite prompt.
>
>
I don't know what to tell you.  Adding the path to sqlite3 works for me:

D:\u\kmt\software\web\playground>sqlite3
'sqlite3' is not recognized as an internal or external command,
operable program or batch file.

D:\u\kmt\software\web\playground>python manage.py dbshell
'sqlite3' is not recognized as an internal or external command,
operable program or batch file.

D:\u\kmt\software\web\playground>dir \tmp\software\sqlite3.exe
 Volume in drive D has no label.
 Volume Serial Number is 2163-D1C1

 Directory of D:\tmp\software

09/22/2008  06:46a             491,908 sqlite3.exe
               1 File(s)        491,908 bytes
               0 Dir(s)   1,382,174,720 bytes free

D:\u\kmt\software\web\playground>set path=d:\tmp\software;%path%

D:\u\kmt\software\web\playground>sqlite3
SQLite version 3.6.3
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .quit

D:\u\kmt\software\web\playground>python manage.py dbshell
SQLite version 3.6.3
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> .quit

Karen

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to