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

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 日

0 投票

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 日

0 投票

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

1 件のコメント

Andreas Goser
Andreas Goser 2014 年 2 月 5 日
See my comment. If licence('inuse') just returns "matlab", this is not a proof Database tbx is not installed...

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeIntroduction to Installation and Licensing についてさらに検索

質問済み:

2014 年 2 月 3 日

コメント済み:

2014 年 2 月 5 日

Community Treasure Hunt

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

Start Hunting!

Translated by