https://github.com/rmartinjak/mex-sqlite3
An extension for MATLAB® or GNU/octave to access sqlite3 databases
https://github.com/rmartinjak/mex-sqlite3
Last synced: 5 months ago
JSON representation
An extension for MATLAB® or GNU/octave to access sqlite3 databases
- Host: GitHub
- URL: https://github.com/rmartinjak/mex-sqlite3
- Owner: rmartinjak
- License: mit
- Created: 2014-06-22T16:31:41.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2019-12-12T17:06:12.000Z (over 6 years ago)
- Last Synced: 2024-07-05T14:15:25.737Z (almost 2 years ago)
- Language: C
- Size: 8.79 KB
- Stars: 5
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-MATLAB - mex-sqlite3 - Free Sqlite3 Mex client for MATLAB. (Database Management)
README
mex-sqlite3
===========
An extension for MATLAB® or GNU/octave to access sqlite3 databases
Compilation for octave :
```octave
mkoctfile --mex -lsqlite3 -o sqlite3.mex sqlite3.c structlist.c
```
Then add resulting sqlite3.mex file to octave search path, for example :
```octave
% cd to your .mex file
p = genpath(pwd);
addpath(p);
savepath;
```