Friday, September 19, 2014
SQLite Getting Started
Simple Note
Go to http://www.sqlite.org/
Go to download page
Download Precompiled Binaries for Windows
(sqlite-shell and sqlite-dll here)
Unzip them into a folder (e.g. C:\programs\sqlite)
Add the folder above into Path (the Environment variable)
or you will need to cd to that folder each time.
Open cmd
Type "sqlite3 test.db"
test.db created
now you can use SQL to access test.db
you can also execute "sqlite3" then choose database with attach command,
e.g. attach "test.db" as test
see http://stackoverflow.com/questions/9057787/opening-database-file-from-within-sqlite-command-line-shell
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment