- Python SQLite Tutorial
- Python SQLite - Home
- Python SQLite - Introduction
- Python SQLite - Establishing Connection
- Python SQLite - Create Table
- Python SQLite - Insert Data
- Python SQLite - Select Data
- Python SQLite - Where Clause
- Python SQLite - Order By
- Python SQLite - Update Table
- Python SQLite - Delete Data
- Python SQLite - Drop Table
- Python SQLite - Limit
- Python SQLite - Join
- Python SQLite - Cursor Object
- Python SQLite Useful Resources
- Python SQLite - Quick Guide
- Python SQLite - Useful Resources
- Python SQLite - Discussion
Python SQLite - 建立连接
要与 SQLite 建立连接,请打开命令提示符,浏览安装 SQLite 的位置,然后执行命令sqlite3,如下所示 -
使用Python建立连接
您可以使用 SQLite3 python 模块与 SQLite2 数据库进行通信。为此,首先需要建立连接(创建连接对象)。
要使用 python 建立与 SQLite3 数据库的连接,您需要 -
使用 import 语句导入 sqlite3 模块。
connect() 方法接受需要连接的数据库的名称作为参数,并返回一个 Connection 对象。
例子
import sqlite3 conn = sqlite3.connect('example.db')
输出
print("Connection established ..........")