tags:

views:

842

answers:

2

Hi,

What's proper way to connect ODBC datasources and execute some SQL statements?

TQuery and other BDE components can do it, but if I understood correctly they are now deprecated?

+4  A: 

You can use the ADO components:

1) Drag a TAdoConnection from the dbGo tab.

2) Right click and choose Edit connection string.

3) Click build

4) Select Microsoft OLE DB Provider for ODBC

5) Click Next

Then you will be able to select a database.

You can drag a TAdoQuery and connect it to the TAdoConnection to execute some queries.

The rest should be straight forward.

Gamecat
+1  A: 

ADO (under the dbGo components component group) as well as dbExpress (under the dbExpress component group) come to mind.

JosephStyons