10
Próbuję utworzyć tabele w MS Access DB z python za pomocą pyodbc, ale kiedy uruchomię mój skrypt nie są tworzone tabele i nie są podawane żadne błędy. Mój kod:Cant Tworzenie tabel w dostępie z pyodbc
#!/usr/bin/env python
import pyodbc
con = pyodbc.connect(r'DRIVER={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=Z:\Data\Instruments\testDB.accdb; Provider=MSDASQL;')
cur = con.cursor()
string = "CREATE TABLE TestTable(symbol varchar(15), leverage double, shares integer, price double)"
cur.execute(string)
Co może być nie tak?
commit jest to, co potrzebne. dzięki – wDroter