Hi,
I work with Oracle 9i and Delphi 2006, the components “TSQLQuery”, “TStoredProc” and “TSQLDataSet” of DBExpress recognize columns “Integer” and “Number” as “TFMTBCDField”, but the problem is “TDBChart” don´t work with this type.
Exists any solution for this?
Thanks...
Carlos Neves
Problem with DBExpress
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Carlos,
I'm afraid you'll have to populate the series manually, iterating on the recordset and using Add or AddXY methods to populate the series.
I'm afraid you'll have to populate the series manually, iterating on the recordset and using Add or AddXY methods to populate the series.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 3
- Joined: Wed Feb 22, 2006 12:00 am
Narcís, it´s one solution
Thanks for Reply.
Carlos Neves
But, i working in a migration of BDE for DBExpress. This project contain 25 TBChart, for this i post one sugestion for this.narcis wrote:Hi Carlos,
I'm afraid you'll have to populate the series manually, iterating on the recordset and using Add or AddXY methods to populate the series.
Thanks for Reply.
Carlos Neves
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Carlos,
BCD type is supported but not FMTBCD, we will add it.
In the meantime, manually adding the field manually should work fine. This is not being added at the editor's list but you can try using:
BCD type is supported but not FMTBCD, we will add it.
In the meantime, manually adding the field manually should work fine. This is not being added at the editor's list but you can try using:
Code: Select all
Series1.YValues.ValueName := 'MyFMTBCDField';
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |