Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialHeri Mardinal
3,125 Points.open database.db <error
Please help, error when i run .open database.db
sqlite> .databases
seq name file
0 main
sqlite> .open database.db
Error: unknown command or invalid arguments:
"open". Enter ".help" for help
3 Answers
Dave McFarland
Treehouse TeacherSorry for the error Heri Mardinal.
The version of SQLite in Workspaces isn't the same as in the video. You need to load the database when you open sqlite. To do that type:
sqlite3 database.db
Petrov von Petrov
21,916 PointsApparently the .open command was deprecated, because if you do .help, you won't find the .open command.
But If you're using the command indicated by Dave McFarland ─ sqlite3 database.db ─ , you won't need to open the database anyway, because it will already be loaded. You can safely skip that command and jump to .tables, and follow along from there.
Ted Sumner
Courses Plus Student 17,967 PointsI don't think you need the . in front of open.