Files
Feeding_control_system/test.py
2025-10-28 19:51:36 +08:00

6 lines
168 B
Python

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