Invoking ADO.NET from MATLAB
- by Andrew Shepherd
It's possible to call .NET from MATLAB, so I thought I would try to use ADO.NET to connect to a database.
I seem to have hit a blocking problem - anytime you try and create a Command object, it throws an error.
You can try this yourself:
>> NET.addAssembly('System.Data');
>> sqlconn = System.Data.SqlClient.SqlConnection();
>>…