Importing a Database to MATLAB error

↘锁芯ラ 提交于 2019-12-06 10:36:35

I would recommend you to check for existing of connection variable and that it is the properly established connection before running exec. You can do it like this:

if ~exist('conn','var') || ~isconnection(conn)
    conn = database('postgres','username','password','org.postgresql.Driver',...
           'jdbc:postgresql://localhost:5433/postgres');
else
    dyn_conformer = exec(conn, 'SELECT * FROM dyn_conformer'); 
    rs =fetch(dyn_conformer);
end
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!