python sqlite3 记录 LTS
参考网页:
SQLite 教程
https://www.runoob.com/sqlite/sqlite-tutorial.html
SQLite 简介
https://www.runoob.com/sqlite/sqlite-intro.html
参考:
https://www.py4e.com/html3/15-database
Datatypes In SQLite Version 2
https://www.sqlite.org/datatypes.html
DB Browser for SQLite
The Official home of the DB Browser for SQLite
https://sqlitebrowser.org/
The database language is called Structured Query Language or SQL for short.
http://en.wikipedia.org/wiki/SQL
A database is a file that is organized for storing data.
Most databases are organized like a dictionary in the sense that they map from keys to values.
Like a dictionary, database software is designed to keep the inserting and accessing of data very fast, even for large amounts of data. Database software maintains its performance by building indexes
as data is added to the database to allow the computer to jump quickly to a particular entry.
SQLite is well suited to some of the data manipulation problems that we see in Informatics
such as the
T
w
i
t
t
e
r
s
p
i
d
e
r
i
n
g
a
p
p
l
i
c
a
t
i
o
n
\color{green}{Twitter spidering application }
Twitterspideringapplication that we describe in this chapter.