*/
public String generateQuery(SQLQueryTypes type, SQLConditions cond) {
switch (type) {
case SELECT:
return new SQLStatementSelect(TABLE_NAME).generateQuery(cond);
case INSERT:
return new SQLStatementInsert(TABLE_NAME).generateQuery(cond);
case UPDATE:
return new SQLStatementUpdate(TABLE_NAME).generateQuery(cond);
case DELETE: