Re: Django Tutorial 1.1: Viewing SQLite3 tables

2013-06-12 Thread Tom Evans
On Wed, Jun 12, 2013 at 3:21 PM, Shailen Sobhee wrote: > You need to download the sqlite3 program. > > This can be obtained here: http://www.sqlite.org/download.html (site up as > of date of posting this reply.) > > 1) Put the sqlite3.exe file in your PATH. If you do not know

Re: Django Tutorial 1.1: Viewing SQLite3 tables

2013-06-12 Thread Shailen Sobhee
You need to download the sqlite3 program. This can be obtained here: http://www.sqlite.org/download.html (site up as of date of posting this reply.) 1) Put the sqlite3.exe file in your PATH. If you do not know what that is, copy the file in C:\Windows\System32 2) In a command prompt, type:

Re: Django Tutorial 1.1: Viewing SQLite3 tables

2010-01-09 Thread Jay Godse
If you want to get comfortable with SQLite, try some of the tutorials at: http://www.squidoo.com/sqlitehammer http://www.squidoo.com/sqlitetutorial http://www.squidoo.com/sqliteprogramming There are also videos at http://www.youtube.com/user/Jaynonymous1 which you may find useful. Cheers,

Re: Django Tutorial 1.1: Viewing SQLite3 tables

2010-01-08 Thread wormser17
Bedros and Roberto, Thank you both for the suggestions. Just downloaded the add-on. Justin, thanks also. You're advice worked (I replied directly to you instead of the group). On Jan 8, 3:47 pm, roberto wrote: > I think there is a plugin for firefox called

Re: Django Tutorial 1.1: Viewing SQLite3 tables

2010-01-08 Thread roberto
I think there is a plugin for firefox called "SQLite manager" that is a big help to do simple stuff with sqlite db. Let me know if you need some directions to use it. Good luck -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this

Re: Django Tutorial 1.1: Viewing SQLite3 tables

2010-01-08 Thread bedros
I use Firefox extension SQLite Manager https://addons.mozilla.org/en-US/firefox/addon/5817 select connect database from database menu and pick your sqlite file and you're set to go. Regards, Bedros On Jan 7, 4:23 pm, Justin Steward wrote: > On Fri, Jan 8, 2010 at

Re: Django Tutorial 1.1: Viewing SQLite3 tables

2010-01-07 Thread Justin Steward
On Fri, Jan 8, 2010 at 10:50 AM, wormser17 wrote: >        mlooby$ sqlite3 >        SQLite version 3.6.12 >        Enter ".help" for instructions >        Enter SQL statements terminated with a ";" >        sqlite> .schema >        sqlite> .schema; >        unknown command

Django Tutorial 1.1: Viewing SQLite3 tables

2010-01-07 Thread wormser17
Hello. First, some quick context about my approach (I am not a programmer): This is the directory where I installed Django: /Library/Python/2.6/ site-packages/django This is my project directory: /Users/mlooby/Sites/mysite Situation 1) I created a SQLite3 database, named "project.db," by editing