@Override public int open(String source, int mode) { int error = 0; try { base_datos.open(source); } catch (SQLException ex) { error = 1; System.out.println("Error en open"); } return error; }
@Override public int importdades(ArrayList dades, String source) { int error = 0; try { out.clear(); out = base_datos.importdades(source); } catch (SQLException ex) { error = 1; System.out.println("Error en import con open"); } return error; }