Questions tagged [oledbcommand]

Represents an SQL statement or stored procedure to execute against a data source using OLE DB provider.

451 questions
-8
votes
1 answer

Why does this code compile in one solution but not in another?

I have this code in one solution, and it works fine: private readonly List departments = new List(); . . . private void LoadDepartments(string serialNum) { string dbContext =…
1 2 3
30
31