https://github.com/nigelhorne/ged2sql
Import a gedcom file into an SQL database
https://github.com/nigelhorne/ged2sql
gedcom genealogy perl
Last synced: 7 months ago
JSON representation
Import a gedcom file into an SQL database
- Host: GitHub
- URL: https://github.com/nigelhorne/ged2sql
- Owner: nigelhorne
- License: gpl-2.0
- Created: 2022-04-24T23:19:50.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-02-05T14:54:12.000Z (8 months ago)
- Last Synced: 2025-02-05T15:46:36.985Z (8 months ago)
- Topics: gedcom, genealogy, perl
- Language: Perl
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ged2sql
=======Import genealogical data from a GEDCOM file into an SQLite database.
It uses Gedcom for parsing, DBI for database interactions, and Lingua::EN modules for name normalization.# Command Line Options
| Flag | Meaning |
| ---- | ------- |
| -f | treat warnings as fatal, implies -w |
| -s | Name of SQLite file (default is out.sql) |
| -w | print warnings |# Schema Design
Tables: people, siblings, children, spouses.
Foreign key constraints enforce relational integrity.