tags:

views:

64

answers:

1

Hi, My application uses TDbChart and ADO. I was wondering, for deployment, do I need to include BDE files too?

Do you know other charting tools that can be used with ADO (freeware preferably)? I just need simple charting tool. TDbChart is a good one, but if I need to deploy BDE files too, I think it's becoming too bulky and complicated.

Thanks!

+2  A: 

No, you don't need deploy the BDE if you are using ADO. ADO and BDE are two different technologies to connect to an database.

Moreover the TDbChart is a data-aware control, because that can be used with any TDataSet descendent connected to an TDataSource.

So you can use ADO, Zeos, dbexpress or the bde components (and many more). to connect your TDbChart to the data.

RRUZ
Thanks! However, this got me confused:From D7 Help file: "The main difference between TChart and TDBChart is that the last one NEEDS the Borland Database Engine to be correctly installed in the target machine, while TChart does not."Does this mean that it applies only if I use BDE related features?
AFF
@AFF,i think wich exist a problem with the syntax of that help file, check this link http://www.berneda.com/TeeChart6Docs/TDBChart.html `The main difference between TChart and TDBChart is that the last one NEEDS the VCL DB.pas unit (the database core unit), while TChart component does not.`
RRUZ
This is great! Thanks a million, You just saved my day! :)
AFF