https://github.com/sshehrozali/db-csv-converter
Python program to convert .DB file to .CSV file or vice-versa.Developed By Syed Shehroz Ali
https://github.com/sshehrozali/db-csv-converter
csv csv-file database db db-csv db-csv-converter python python3 sqlite3 sqlite3-database
Last synced: about 2 months ago
JSON representation
Python program to convert .DB file to .CSV file or vice-versa.Developed By Syed Shehroz Ali
- Host: GitHub
- URL: https://github.com/sshehrozali/db-csv-converter
- Owner: sshehrozali
- Created: 2020-08-24T08:05:14.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-24T08:10:03.000Z (almost 6 years ago)
- Last Synced: 2025-03-28T23:14:12.415Z (about 1 year ago)
- Topics: csv, csv-file, database, db, db-csv, db-csv-converter, python, python3, sqlite3, sqlite3-database
- Language: Python
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Python and SQLite3 database
What is .DB file?
DB file stands for database file.A database file is a file which contains all data relevant to your program stored in a form of table containing rows and
columns just like MS Excel spreadsheets or Google Sheets.Generally database files are used to store data to keep quering and using data for different tasks
and purposes.
What is .CSV file?
CSV file stands for comma-separated values which is a method used to separate one field with another with the help of comma(,).This file is also used to store
data but in a different format just same as MS Excel file.In .CSV file every field is separated with a comma(,) within a row and with columns of
required fields.CSV files can directly be open with any spreadsheet or CSV editor for e.g MS Excel or Google Sheets.