1

I have a simple code to convert the Paradox DB to a dictionary and save it in a .dat with pickle.

In Windows, all works great but in Ubuntu 20 Server and venv for python 3.8 I have this issue.

*** stack smashing detected ***:
terminated Aborted (core dumped)

This is the error in my code:

from pypxlib import Table
table = Table("/complete/path/database.DB")
for x in table:
    print(x)

Has someone any idea about this?

wuerfelfreak
  • 2,363
  • 1
  • 14
  • 29
  • Possibly a bug in pypxlib. How did you install pypxlib on the Ubuntu box? – AKX Apr 21 '21 at 07:30
  • I install it in the same way of i make in Windows. pip install pypxlib i try in two diferent ubuntu server with the same result. Thanks – David Aragón Apr 21 '21 at 08:39
  • I would not be surprised if this is due to some specific Windows encoding stuff going on, since Paradox (BDE) is a Windows-only legacy database system. – JP Dias Jul 07 '22 at 11:01

0 Answers0