摘要:
一、MySQL 8 导入大表时的错误 在 MySQL 8 中,用导入脚本创建数据库时,有一张大表出现如下错误: [ERR] 1118 - Row size too large (> 8126). Changing some columns to TEXT or BLOB or using ROW_F 阅读全文
摘要:
import os import sqlite3 from sqlite3 import Error from queue import Queue, Empty from typing import List,Tuple, Any class SQLiteDB: default_db_path = 阅读全文