Download MATLAB DATABASE TOOLBOX RELEASE NOTES User`s guide
Transcript
Upgrading from an Earlier Release To ensure code from before Release 12 works properly in Release 12, either use try/catch logic to deal with error conditions, or use a form of mbuild that returns an error status instead of throwing an error. Specifically try mbuild something.c catch disp( something failed ); end or status = mbuild( something.c ); if status ~= 0 disp( something failed ); end 20-5