* @throws java.util.NoSuchElementException nunca
* @throws java.io.IOException Error rms
*/
public void borrar(String nombre) throws java.io.IOException, java.util.NoSuchElementException
{
RecordStore rs=null;
try
{
rs=RecordStore.openRecordStore(AlmacenMicropocha.RMS_ID,true);
//buscar y borrar elemto con mismo nombre
RecordFilter filtro=new AlmacenMicropocha.RmsFiltro(nombre);
RecordEnumeration re=rs.enumerateRecords(filtro,null,false);
while(re.hasNextElement())
{
int el=re.nextRecordId();
rs.deleteRecord(el);
}
rs.closeRecordStore();
}
catch (Exception e)
{
throw new java.io.IOException(e.getMessage());
}