Hi,
I'm tryng use the lib to read a database DBSIAM with this code.
from pydbisam import PyDBISAM
with PyDBISAM("/PATH_TO_DAT/FILE.dat") as db:
print(", ".join(db.fields()))
for row in db.rows():
print(", ".join(map(str, row)))
However, the code return this error:
ValueError: 5635 is not a valid FieldType
Can you help me?
Hi,
I'm tryng use the lib to read a database DBSIAM with this code.
from pydbisam import PyDBISAM
with PyDBISAM("/PATH_TO_DAT/FILE.dat") as db:
print(", ".join(db.fields()))
for row in db.rows():
print(", ".join(map(str, row)))
However, the code return this error:
ValueError: 5635 is not a valid FieldType
Can you help me?