1

I have to make a MySQL database from a Clarion database. The tables are .tps files.

I don't know how to do it, for now I only found applications that work with .dat files.

DanM7
  • 2,203
  • 3
  • 28
  • 46
HoNgOuRu
  • 717
  • 4
  • 13
  • 26

2 Answers2

10

I made an open-source bulk tps-to-csv conversion utility.

Its based on reverse engineering the TPS file format, so make sure you double check the results. The source (Java) can be found is available on github.

ctrl-alt-dev
  • 286
  • 3
  • 5
  • This probably only works on non-encrypted TPS files? Clarion-made EXE can have a symmetric crypto password embedded, then TPS files are different... – Arioch 'The Oct 09 '19 at 07:59
  • While blog posts mention encryption, the jar download page does not seem to listen command line option for the password... – Arioch 'The Oct 09 '19 at 08:16
2

If you have a copy of Clarion, you should have the topscan.exe utility. It has an export feature.

riffrazor
  • 447
  • 5
  • 8