I am using matlab 2009 version. I am acessing data through database using following code
conn = actxserver('ADODB.Connection');
conn.Open('Provider=sqloledb;Data Source=localhost\SQLEXPRESS;Initial Catalog=user_control_ex01;Integrated Security=SSPI;');
dat=conn.Execute('select * from user_ident').GetRows;
the table returned is in this format
dat =
[ 1] [ 2] [ 3] [ 4]
'Admin ' 'user ' 'user2 ' 'hello '
'Admin ' 'user ' 'user2 ' 'hello123 '
As you can see this is 2x4 cell returned object. I want this cell to be converted into proper table or some format where I can access the exact row column entry. I am thinking to use this cell as it is but could not getting idea how to proceed. I want to access data with row_number and column number reference. Could someone please provide some help as this cell is not int proper row column format it is presenting one row as column.