• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-217164

po/H03-May-2022-469368

src/H03-May-2022-3,7633,162

ABOUT-NLSH A D19-Feb-200215.4 KiB293251

AUTHORSH A D04-Feb-200230 11

COPYINGH A D04-Feb-200217.6 KiB341281

ChangeLogH A D15-Jan-20032.9 KiB7675

INSTALLH A D04-Feb-20027.6 KiB183143

Makefile.amH A D19-Feb-200244 42

Makefile.inH A D15-Jan-200313.3 KiB425350

READMEH A D04-Feb-20021.4 KiB6650

acconfig.hH A D04-Feb-200267 43

aclocal.m4H A D15-Jan-200339.9 KiB1,1621,045

config.guessH A D19-Feb-200237.5 KiB1,3151,138

config.h.inH A D01-Jul-20025.1 KiB198136

config.subH A D19-Feb-200227.5 KiB1,4111,272

configureH A D15-Jan-2003175.8 KiB6,1015,190

configure.inH A D15-Jan-20031.4 KiB7056

depcompH A D04-Feb-200211.8 KiB412275

install-shH A D04-Feb-20025.5 KiB252153

missingH A D04-Feb-20028.6 KiB284224

mkinstalldirsH A D04-Feb-2002722 4123

pxtools.specH A D15-Jan-2003788 4533

pxtools.spec.inH A D30-Jun-2001791 4533

stamp-h.inH A D15-Jan-200310 21

README

1The pxtools are a set of tools to convert a Paradox-database into a
2SQL-database.
3
4The current version can be found at
5http://www.kneschke.de/projekte/paradox/
6mailto:jan@kneschke.de
7
8pxTools
9=======
10
11pxinfo
12------
13dumps the basic infomations of the given paradox-file.
14
15pxsqldump
16---------
17Parses the Paradox-database and dump the corresponding SQL-strings (CREATE
18TABLE and INSERT INTO) on stdout.
19
20use -n to overwrite the tablename.
21use -f to specify the filename of t
22
23pxcsvdump
24---------
25Parses the Paradox-database and dump the corresponding CSV-strings on
26stdout.
27
28use -n to overwrite the tablename.
29
30
31
32Supported Field Types
33=====================
34Currently the following field-types are recognized:
35ALPHA
36DATE
37SHORTINT
38LONGINT
39CURRENCY
40NUMBER
41LOGICAL
42TIMESTAMP
43MEMOBLOB
44
45the rest is currenly not supported. mail me if you need more.
46
47Problems
48========
49
50Y2K
51---
52Paradox-files are NOT Y2K-safe. Currently there is a workarund for this bug
53in pxconvert.c that adds 100 years if the date is before 1.1.1970.
54
55Index-files
56-----------
57The information you get out of the index-files by pxsqldump is not rellay
58usefull. It all the data it can find, but the header is currently parsed
59wrong. Anyway these index-files are not needed to convert a paradox-database
60into a SQL-database. (PRIMARY KEY and FOREIGN KEY can't be detected yet.)
61
62TIMESTAMP
63---------
64The field-type TIMESTAMP returned by pxsqldump has a precission of
65+/- 1 second.
66