Skip to content

JulioV/PythonScriptsForSQLite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Python scripts for SQLite databases

Some python scripts to manipulate SQLite databases

MergeDatabasesWithSameName.py

This script merges all the databases with the same name that are contained in different folders. For example, it is possible to unify all the daily logs (dbs) from a certain tool.

Initial folder structure

¬ 01/01/2015
  ¬ LogServer.db -(100 records)
  ¬ ClientServer.db
  ¬ OtherDB.db
¬ 02/01/2015
  ¬ LogServer.db -(50 records)
  ¬ ClientServer.db
  ¬ OtherDB.db
¬ 03/01/2015
  ¬ LogServer.db -(200 records)
  ¬ ClientServer.db
  ¬ OtherDB.db

Final folder structure:

¬ OutputFolder
  ¬ LogServer.db -(350 records)
  ¬ ClientServer.db
  ¬ OtherDB.db

About

Some pythons scripts to manipulate SQLite databases

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages