views:

63

answers:

2

I want to store my results from neural network in MATLAB to Access database, and also store video with it to the same database. For other time when everyone result the same pic from neural network the output for him is video that was stored before in DB...

Can you help me?

A: 

Apart from the commercial Database Toolbox you may access your DB via Java scripting in MATLAB. See the manual for further details about how to use Java from MATLAB.

First requirement for this approach is a JDBC driver for your database.

zellus
A: 

I would recommend to use ADO OLE Database Connection from File Exchange. Very fast and easy to use with Access database.

Install it and look at adodb_demo.m for code example.

In this question you can find an example of using ADODB object directly. It's the same approach used in the above submission.

yuk