Ejemplo n.º 1
0
 /**
  * SQL Select Statement agregado
  *
  * @param statement puede incluir "TOP 10", "DISTINCT"
  * @return
  */
 public static SqlSelect select(String statement) {
   SqlSelect obj = new SqlSelect();
   obj.addStatement(statement);
   return obj;
 }