This is an API for accessing the SERF database from within the Matlab programming environment.
- Download this repository to $repopath.
- Start your database server.
sudo mysqd_safe &
or use your GUI. - Open Matlab and change to $repopath.
- Add the database interface to the path:
addpath(fullfile(pwd, 'mym'));
- Import the object interfaces:
import SERF.*;
- Create a connection to the MySQL server:
dbx = SERF.Dbmym('mysite');
See test.m for an example of how to use this. Sorry, more detail to come later.