Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. void cargar() {
  2.  
  3.  
  4. Calendar cal = new GregorianCalendar();
  5. int anio=cal.get(Calendar.YEAR);
  6. int mesi=cal.get(Calendar.MONTH);
  7. int mest=mesi+1;
  8. int mes=mest;
  9. int dia=cal.get(Calendar.DATE);
  10. String fecha= anio+"-"+mes+"-"+dia;
  11. this.lab_fecha.setText(fecha);
  12.  
  13. }
  14.  
  15. SQL = "SELECT * FROM adelantos WHERE fecha ORDER BY fecha DESC,hora DESC";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement