<div dir="ltr">I am experimenting with this and have a small Libreoffice database (created with version LR 4.4.0.3) to try and learn how this works.<div><br></div><div>So far I have run these commands (its ODB 1.1.1)</div><div><br></div><div><div>con <- odb.open("~/Dropbox/2015/Projects/LibreofficeDataBase/LRBaseTutorial.odb")</div><div>odb.tables(con)</div><div><br></div><div>The first two work fine and the two tables are printed out by R, </div><div><br></div><div><div>> odb.tables(con)</div><div>$tbl_nutrients</div><div>  <a href="http://field.name">field.name</a> field.type data.type comment</div><div>1         ID    INTEGER   numeric      NA</div><div>2     Outlet       CHAR character      NA</div><div>3        Fat    DECIMAL   numeric      NA</div><div>4    Protein    DECIMAL   numeric      NA</div><div>5     Sodium    DECIMAL   numeric      NA</div><div>6  Pottasium    DECIMAL   numeric      NA</div><div><br></div><div>$`tbl-Nuclear`</div><div>                              <a href="http://field.name">field.name</a> field.type data.type comment</div><div>1                                     ID    INTEGER   numeric    <NA></div><div>2                            institution    VARCHAR character    <NA></div><div>3                                 status    VARCHAR charact</div></div><div>etc etc</div><div><br></div><div><br></div><div>but</div><div><br></div><div>nutrients <- odb.read(con, "SELECT * FROM tbl_nutrients")</div></div><div><br></div><div>gives the error:</div><div><br></div><div>Error: Error while executing SQL query  : "Unable to retrieve JDBC result set for SELECT * FROM tbl_nutrients (Table not found in statement [SELECT * FROM tbl_nutrients])"<br></div><div><br></div><div>This is rather new to me, so I wondered if anyone could point out any obvious thing I am doing wrong.</div><div><br></div><div>Its R version 3.1.2, in Rstudio 0.98.1091 running on Mac/Maverick.</div><div><br></div><div>Thanks,</div><div><br></div><div>Graham</div><div><br></div></div>