Home | History | Annotate | Download | only in base

Lines Matching refs:table

50     cursor.execute("select name from sqlite_master where type='table'")
78 sql = "select sql from sqlite_master where type='table' and name='%s'" % table_name
86 def alterTableToMatch(self, table):
87 tableName = table.getTableName()
91 invalidAppCols, invalidDBCols = table.checkTable(warnflag=0)
104 newcols = table.getAppColumnList()
115 sql = "create temporary table %s (%s)" % (tmpTableName, tmpcolnames)
121 sql = "drop table %s" % tableName
124 sql = table._createTableSQL()
130 sql = "drop table %s" % tmpTableName