Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Converting from BDE to ADO

Status
Not open for further replies.

rogerte

Programmer
Nov 9, 2001
164
GB
New company guidelines demand we convert all Paradox data to Access or MSSQL, so we have started to look at the Delphi Apps (Delphi 7) and changing from BDE to ADO. However need a bit of guidance.

Most data forms use the same format - Data loaded to DBGrid, either click on an Add button, or highlight the wanted record, and click on Edit or Delete buttons. Data then transferred to variables to be edited in TEdits saved.

No problem with data where data is from a single ADOTable , but need guidance where ADOQuery is used on data from joined tables (e.g. SELECT a.col2, a.col3, b.col2 FROM table1 a, table2 WHERE b.col1 = a.col1). In this case we can get the data into variables for table1, but not table2 (b.col2 from above example).

Most examples I have seen don't relate to such a situation - can anyone point to any online ones that will help (company not willing to pay for training on "legacy" systems!)

Many thanks

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top