try {
table = podsalinanDB.getTable("downloads");
podsalinanDB.beginTransaction(SqlJetTransactionMode.READ_ONLY);
if (table!=null){
ISqlJetCursor currentDBLine = table.order(table.getPrimaryKeyIndexName());
if (!currentDBLine.eof()){
do {
URLDownload newDownload = new URLDownload(currentDBLine.getString("url"),
currentDBLine.getString("size"),
currentDBLine.getString("destination"),
currentDBLine.getString("podcastSource"),