Initial commit on insertdata branch

This commit is contained in:
xiongyi
2025-10-28 19:51:36 +08:00
commit 096bc4ddb6
11 changed files with 625 additions and 0 deletions

5
test.py Normal file
View File

@ -0,0 +1,5 @@
import pyodbc
print("系统中可用的ODBC驱动程序:")
for driver in pyodbc.drivers():
if "Access" in driver or "Excel" in driver:
print(f" {driver}")