This is how I try to load the data:
var cmd = new OleDbCommand($"select count(*) from {tableName}", connection); RowsCount = (int)cmd.ExecuteScalar(); But even on such a seemingly simple request - everything hangs tightly. Specifically, this table is quite large (about 60 MB), but this is a count request! But with other tables, everything works without problems (but they are smaller). Tell me what to do?
upd. Can you tell me how you can somehow pierce the insides of OleDB? Maybe this will help to understand the cause of the hang.