I have an Access database which has a table with around 6k records. When I am trying to open it in C# using dataset method, it took around 2 minutes to open. Why is this happening and how can speed it up?
MyDataSet _dataSet = new MyDataSet();
MyDataTableAdapter _myDataTableAdapter = new MyDataTableAdapter();
_myDataTableAdapter.GetData();
Last line tooks a long time (around 2 minutes) to get the data.
I created a strongly type dataset using VS tools (See here: http://msdn.microsoft.com/en-us/library/04y282hb(v=vs.80).aspx).
Then I used the above code to retrieve data out of database. I know that Access is very slow but for 6K record, it should take such amount of time.
The database is local and next to application.