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
|
|
| myopen(host,user,pwd)
|
function myopen(host,user,pwd)
% myopen Connect to MySQL [mym utilities]
% Example myopen('localhost','root','pwd')
try
a = mym('open',host,user,pwd); %#ok
catch
error('Could not connect to MySQL; check login parameters')
end
|
|
Contact us at files@mathworks.com