Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 1.01 KB

File metadata and controls

19 lines (13 loc) · 1.01 KB

SQLite to CSV Conversion Tool

This project provides a GUI based application to select tables from an SQLite3 Database and export them .CSV files.

This project's original purpose was to provide a tool for converting Bentley AutoPIPE Results Database files into .csv files for easier processing for Engineering analysis. However, the tool has now been generalized to allow it to work for conversion of any SQLite3 database tables.

How It Works

This project was coded in Python, using standard libraries.

Installation and Use

The latest release contains a pre-compiled executable, which can be downloaded and used immediately.

Alternatively, the source code package can be downloaded from the latest release and compiled using:

py -m PyInstaller -F --icon='Icon.png' --add-data "Icon.png;." --onefile --noconsole 'DBConverter.py'