try {
table = podsalinanDB.getTable("podcasts");
podsalinanDB.beginTransaction(SqlJetTransactionMode.READ_ONLY);
if (table!=null){
ISqlJetCursor currentDBLine = table.order(table.getPrimaryKeyIndexName());
if (!currentDBLine.eof()){
do {
Podcast newPodcast = new Podcast(currentDBLine.getString("name"),
currentDBLine.getString("url"),
currentDBLine.getString("directory"),
currentDBLine.getString("localFile").replaceAll("'", "\'"),