~jmehne/mnemosyne-proj/trunk

« back to all changes in this revision

Viewing changes to mnemosyne/mnemosyne/libmnemosyne/databases/SQLite.py

  • Committer: Peter Bienstman
  • Date: 2017-10-27 17:32:32 UTC
  • Revision ID: peter.bienstman@ugent.be-20171027173232-3ko3atsxphacwg0v
Cleanup for github migration.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
import sys
7
7
import time
8
8
import string
9
 
import shutil
10
9
import datetime
11
10
import copy as objcopy
12
11
 
23
22
from mnemosyne.libmnemosyne.utils import expand_path, contract_path
24
23
from mnemosyne.libmnemosyne.utils import numeric_string_cmp_key, mangle
25
24
 
26
 
 
27
25
# All ids beginning with an underscore refer to primary keys in the SQL
28
26
# database. All other id's correspond to the id's used in libmnemosyne.
29
27
# For large tables, we don't use libmnemosyne id's as primary keys for
206
204
from mnemosyne.libmnemosyne.databases.SQLite_logging import SQLiteLogging
207
205
from mnemosyne.libmnemosyne.databases.SQLite_statistics import SQLiteStatistics
208
206
 
 
207
 
209
208
class SQLite(Database, SQLiteSync, SQLiteMedia, SQLiteLogging,
210
209
             SQLiteStatistics):
211
210