Reputation: 3
I'm new to Delphi, and I'm trying to find an componnent to connect with a SQL Server database. In Delphi XE I used ADOConnection, but I can't find any component that serves to this propose.
Upvotes: 0
Views: 1296
Reputation: 125708
You're using the Starter Edition, which does not include database access components according to the Delphi Product Editions matrix. In order to connect to databases, you'll need to upgrade to a higher SKU (edition).
Most third-party alternatives won't work with Standard either, because the underlying classes they would need to use don't exist in the Standard SKU.
Upvotes: 3