No BSD License  

Highlights from
Access a MySQL database

image thumbnail
tbprint(table)
function tbprint(table)
% tbprint  List a few rows of MySQL table [mym utilities]
% Example  tbprint('junk')
if ~istable(table)
   error('Table %s not found; use ''tblist'' to list available tables',table)
else
   mym(['select * from ' table ' limit 20'])
end   

Contact us at files@mathworks.com