Future<bool> dropTable() async { var con = await _initializeConnection(isolatedConnection: true); await con.query('DROP TABLE $tableName;'); return true; }