fast table flush without raw SQL

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
def no_style():
    """Returns a Django Style object that has no colors."""
    class dummy(object):
        def __getattr__(self, attr):
            return lambda x: x
    return dummy()

def clear_tables(*flush_tables):
    from django.db import connection, transaction
    cursor = connection.cursor()
    statements = connection.ops.sql_flush(no_style(), 
                                          flush_tables, 
                                          connection.introspection.sequence_list())
    for statement in statements:
        cursor.execute(statement)
        transaction.commit_unless_managed()

More like this

  1. grep and delete sqlite tables by kifkif 3 years, 5 months ago
  2. oneliner to delete SQLite tables by kifkif 3 years, 6 months ago
  3. FieldsetForm by Ciantic 6 years, 1 month ago
  4. CategoriesField by fongandrew 3 years, 9 months ago
  5. Extended cacheable callables and properties by gsakkis 2 years, 11 months ago

Comments

(Forgotten your password?)