Este codigo, encuentra el valor del primer registro de un DataProvider
private String buscarUltimoCodigoControl() {
try{
int numeroRegistros;
numeroRegistros = mensajescontrolDataProvider.getRowCount();
if ( numeroRegistros == 0){
info("No hay registros de control");
} else{
mensajescontrolDataProvider.cursorFirst();
String codigox = (String)
mensajescontrolDataProvider.getValue("mensajescontrol.codigo");
return codigox;
}
} catch (Exception e) {
log("Error: " , e);
error("Error "+e);
mensajescontrolDataProvider.revertChanges();
}
return null;
}
private String buscarUltimoCodigoControl() {
try{
int numeroRegistros;
numeroRegistros = mensajescontrolDataProvider.getRowCount();
if ( numeroRegistros == 0){
info("No hay registros de control");
} else{
mensajescontrolDataProvider.cursorFirst();
String codigox = (String)
mensajescontrolDataProvider.getValue("mensajescontrol.codigo");
return codigox;
}
} catch (Exception e) {
log("Error: " , e);
error("Error "+e);
mensajescontrolDataProvider.revertChanges();
}
return null;
}
Comments