python3常用mysql库,Python3 连接各类数据库
SQLite是一种嵌入式数据库,SQLite本身是C写的体积很小,它的数据库就是一个文件,所以经常被集成到各种应用程序中,甚至在iOS和Android的App中都可以集成。Python内置了sqlite3。#coding:utf-8importsqlite3conn= sqlite3.connect('test.db')cursor=conn.cursor()#sqlite创建表时,若id为INT...