shakeeb khan wrote:
> i want to make a database in sqlite using MAC terminal but having
> problem in creating.kinldy tell me a proper syntax
>
> i was trying : "sqlite>sqlite mydb.db "
>
> it shows me "-->" and hault the program kinldy tell me what is a
> proper way of creating database in sqllite

You first ran "sqlite" without parameters, so now you are within sqlite 
command line. Now you are trying to run "sqlite mydb.db" - but that's 
not a valid SQLite command, it's a shell command.

So figure out what you want to do. From the shell, run "sqlite mydb.db". 
>From inside sqlite command line, run ".open mydb.db"

Igor Tandetnik 



_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to