No BSD License
-
MYDEMO: Demonstrate usage of ...
-
dbadd(dbname)
-
dbcurr
-
dbdrop(name)
-
dblist
-
dbopen(name)
dbopen Make MySQL database current [mym utilities]
-
isdbase(name)
isdbase True if MySQL database exists [mym utilities]
-
istable(name)
-
myclose
-
myisopen
myisopen True if MySQL instance active [mym utilities]
-
myopen(host,user,pwd)
-
tbadd(table,names,types,varar...
-
tbattr(table)
-
tbdrop(table)
-
tblist(varargin)
tblist List tables of MySQL database [mym utilities]
-
tbprint(table)
tbprint List a few rows of MySQL table [mym utilities]
-
tbread(table,cols,vecs,sql)
-
tbrename(old,new)
-
tbsize(table,varargin)
-
tbwrite(table,cols,vecs,varar...
-
MYDEMO: Demonstrate usage of ...
-
View all files
|
|
| 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