From: Ryan Utz on
Hi all,

I'm attempting to import data from Access (2007 version) for the first time. I've successfully figured out how to connect to the database. But, having done so, I have no idea how to simply import some data. My code is:

conn = actxserver('ADODB.Connection')
connString = 'Provider=Microsoft.Ace.OLEDB.12.0;Data Source=c:\database.accdb;User Id=admin;Password=;'
conn.Open(connString);

OK, so I'm connected. Great. Now all I want to do is bring in some data for Matlab to analyze from a simple table (no fancy queries). How can I do this?!

Thanks!!
Ryan