How can I determine if Database Toolkit is present in my installation?

2 次查看(过去 30 天)
I am a first time user of Matlab.
I need to connect to a custom database (I have the jdbc driver) to import some data for analysis.
Our IT says the Database Toolkit is installed with the product. But when I try to create a connection (following the docs) I get the following error:
>> conn = database('TeiidOW', 'user', 'user', 'teiid-8.4.0.Final-jdbc','jdbc:teiid:OpenWorks@mm://localhost:31000;version=1');
Undefined function 'database' for input arguments of type 'char'.
BTW, I added the jdbc driver to classpath.txt and restarted MatLab.
Any pointers are much appreciated.
Thanks in advance Srini

采纳的回答

Mischa Kim
Mischa Kim 2014-2-3
编辑:Mischa Kim 2014-2-3
Use the
ver
command to list all installed toolboxes. Additionally, you can list all licensed toolboxes with
license('inuse')
  1 个评论
Andreas Goser
Andreas Goser 2014-2-3
It is actually both - you need to check with VER if it is installed and LICENSE to see if it is licensed. There are good reasons why in your environment only one is true.
Note that the 'inuse' option would only return what you successfully haved used. In your case it is better to run
license('test','Database_Toolbox')
which should return 1.

请先登录,再进行评论。

更多回答(1 个)

Srini
Srini 2014-2-3
Thanks. It seems like I do not have the product installed.
licence('inuse') just returned "matlab"
I installed the database toolbox sepertely. It works now.
Thanks a bunch for your input

类别

Help CenterFile Exchange 中查找有关 Database Toolbox 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by