Link to home
Start Free TrialLog in
Avatar of Norm-al
Norm-alFlag for United States of America

asked on

Trying to run a project in Delphi build by previous developer and it's missing TcsDatabase and TcsTable

Not sure how to move forward on this one, I am getting unresolved on SQLServer and csTables in the uses but I am not sure where to look... any ideas?

uses
  SysUtils, Classes, DB, SQLServer, csTables, uAppLog, Forms, Dialogs, Windows,
  Controls, ADODB, StrUtils, Variants, DateUtils;

type
  TdmPlantMfg = class(TDataModule)
    dbPlantMfg1: TcsDatabase;
    tblMfg_Schedule1: TcsTable;
    dsMfg_Schedule1: TDataSource;
    dsSearchPlantMfg1: TDataSource;
    qrySearchMfg1: TcsQuery;
    dbSqlMPCS1: TcsDatabase;
    tblPCJobData1: TcsTable;
    qrySearchMPCS1: TcsQuery;
    dsSearchMPCS1: TDataSource;
    dsPCJobData1: TDataSource;
    dsHolidays1: TDataSource;
    tblHolidays1: TcsTable;
    dsFinishes1: TDataSource;
    tblFinishes1: TcsTable;
    dsQryMfg_Schedule1: TDataSource;
    qryMfg_Schedule1: TcsQuery;

Open in new window

Avatar of Emmanuel PASQUIER
Emmanuel PASQUIER
Flag of France image

I don't know what kind of dataset component TCSDatabase and TCSTable are. Probably 3rd party components, you should try to find the editor. A quick search wasn't successful with google, so your best shot would be to get in contact with the previous developer.

If you can't, or if you prefer use only more 'standard' dataset components : replace those with ADO for example.
What kind of DB is this application supposed to work with ?
Avatar of Norm-al

ASKER

SQL. I will try swapping them out with their ADO counterparts, thanks.. I didn't realize I can do that :P
ASKER CERTIFIED SOLUTION
Avatar of Emmanuel PASQUIER
Emmanuel PASQUIER
Flag of France image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial