All Questions
Tagged with sqlite python-2.x
7 questions
1
vote
1
answer
123
views
Database design using Closure Table for tagging system
I created these database tables with the inspiration in NjDevPro github repository. The design uses Closure Table for implementation of hierarchical tagging system in ...
3
votes
2
answers
6k
views
Simple one time pad cipher
I had this idea not to long ago on creating a secure chat for people who need to be not meddled with when talking (like whistleblowers, hackers, etc) talking to one of my friends about it he said I ...
2
votes
1
answer
584
views
Load data in sqlite
I have written small application for inserting data into sqlite. can you please review.
create data from specified path
create Table into sqlite database
Path format /user/proj/file
...
14
votes
3
answers
2k
views
Find my colleagues
I recently finished the Using Databases with Python course. To figure out whether I really understood what was being taught, I build an application which does roughly the same but uses a different ...
5
votes
1
answer
1k
views
Extracting a conversation from a Skype sqlite database
I've made this code to extract a conversation from a Skype database file with a certain user ID, all this being specified as a command line argument.
Since Skype uses SQLite to store the messages I ...
8
votes
1
answer
14k
views
A class to create and modify SQLite3 databases with a terminal
I would like feedback on the class I've written. The purpose is to dynamically create and interact with SQLite3 databases, accepting lists of complete or incomplete statements.
...
6
votes
1
answer
3k
views
Persistent key value store for Python using SQLite3
This is a module to implement a key value store in Python using SQLite3. Originally written to allow sharing of configuration among multiple threads that are already sharing a SQLite3 database, I have ...