sqlite3 - SQLite installation problems -


i downloaded binaries windos sqlite , extracted them. there 3 files

  1. a shell

  2. dll

  3. analyzer

when try run create database , table sqlite shell get....

  sqlite version 3.7.8 2011-09-19 14:49:19   enter ".help" instructions   enter sql statements terminated ";"   sqlite> sqlite3 test.db   ...> create table tbl1(one varchar(10), 2 smallint);   error: near "sqlite3": syntax error   sqlite> 

when try run create database , table command line(vista) shell get....

microsoft windows [version 6.0.6000] copyright (c) 2006 microsoft corporation.  rights reserved.  c:\users\codenamejupiterx>sqlite3 test.db 'sqlite3' not recognized internal or external command, operable program or batch file.  c:\users\codenamejupiterx> 

does have ideas?????

you run command sqlite3 test.db start sqlite shell. (your first example) in there, not need part of command again, issue "create table " command.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -