#100DaysOfCode in Python Transcripts
Chapter: Days 79-81: Basic Database Access with SQLite3
Lecture: A brief intro to SQLite3 Databases
Login or
purchase this course
to watch this video and the rest of the course contents.
0:00
Welcome to SQLite 3 Databases.
0:03
I'm Julian Sequeira and I'll be walking you through
0:06
possibly one of the most fun and satisfying libraries
0:09
you'll deal with on your Python journey.
0:11
I say that because at this point you'll be looking
0:14
at persistent data, more so than just a simple text file
0:20
or what have you.
0:21
SQLite 3 Databases allow you to actually use your SQL
0:25
knowledge to give you self-persistent databases.
0:29
It's as simple as that.
0:30
It's exactly what you expect if you've ever dealt
0:33
with databases before and it's really, really simple.
0:37
So these three days you're going to be creating your first
0:40
SQLite 3 database
0:43
and then you'll be learning how to inject data into a...
0:47
Print the data out and I've also included a couple of really
0:50
cool scripts that you should help you automate some
0:53
of your SQL journeys and also it should help you,
0:58
help guide you through your SQLite 3 learning.
1:00
So enjoy and get cracking.