Execute SQL statement using SQLite connection
exec(
performs database operations on an SQLite database file by executing the SQL statement
conn
,sqlquery
)sqlquery
for the SQLite connection conn
using
the MATLAB® interface to SQLite. For example, use this syntax to create database tables in
the SQLite database file. To import data into MATLAB from the SQLite database file, use the fetch
function.