Files
Feeding_control_system/test.py

6 lines
168 B
Python
Raw Normal View History

2025-10-28 19:51:36 +08:00
import pyodbc
print("系统中可用的ODBC驱动程序:")
for driver in pyodbc.drivers():
if "Access" in driver or "Excel" in driver:
print(f" {driver}")