Searched refs:dropStatement (Results 1 – 4 of 4) sorted by relevance
94 final StringBuffer dropStatement = new StringBuffer("DROP TABLE \""); in dropTable() local95 dropStatement.append(_name); in dropTable()98 dropStatement.append("\" IF EXISTS"); in dropTable()100 executeSQL(dropStatement.toString()); in dropTable()
106 String dropStatement = "DROP TABLE \"" + _name; in dropTable() local107 executeSQL(dropStatement); in dropTable()
126 final StringBuffer dropStatement = new StringBuffer("DROP TABLE \""); in dropTable() local127 dropStatement.append(_name); in dropTable()129 dropStatement.append("\" IF EXISTS"); in dropTable()131 executeSQL(dropStatement.toString()); in dropTable()
227 String dropStatement = "DROP TABLE \"" + _name; in dropTable() local229 dropStatement += "\" IF EXISTS"; in dropTable()230 executeSQL( dropStatement ); in dropTable()
Completed in 19 milliseconds