pgdbf icon indicating copy to clipboard operation
pgdbf copied to clipboard

Convert XBase / FoxPro databases to PostgreSQL

Results 24 pgdbf issues
Sort by recently updated
recently updated
newest added

If CREATE is suppressed, field names are never created: https://github.com/kstrauser/pgdbf/blob/4e847759b5eee96da9dc3d2604e0b555ddd57ccb/src/pgdbf.c#L476-L477 Those field names are used in the ignore code: https://github.com/kstrauser/pgdbf/blob/4e847759b5eee96da9dc3d2604e0b555ddd57ccb/src/pgdbf.c#L538 Using -i with -C (or -u) cause a segfault when...

More robust handling of MEMO records, and ability to detect corrupt MEMO data and report it on the output and stderr. pgdbf was crashing on me due to a mismatched...

Option 'l' (default) - load data. Option 'L' - don't load data, only DDL statements.

Currently, pgdbf creates a PostgreSQL table with the same name as the DBF's file name. e.g. `pgdbf hello.dbf` creates a table called "hello". Can we add a flag to change...

In original **input.dbf** table exists value "8401000000". After pgdbf converting process was this value changed to value "8.401E+10" (in **output.sql** file). The structure of attribute field "ico" was converted (by...

On Ubuntu 18.04 compiling reports: ``` pgdbf.c: In function ‘main’: pgdbf.c:571:16: warning: implicit declaration of function ‘asprintf’; did you mean ‘vsprintf’? [-Wimplicit-function-declaration] if(asprintf(&pgfields[fieldnum].formatstring, "%%.%dlf", fields[fieldnum].decimals) < 0) { ^~~~~~~~ vsprintf...

`pgdbf` is so fast! I would love to use it to convert Visual FoxPro DBF files to CSV. Any ideas? Thanks in advance!