Hi,
I would like to know if we qualify for a free upgrade to version 1.3 ? We purchased the 1.2.0 version last year...
I would like the obscure problem I describe below to "go away".
I am "Warren Ave-Lallemant" at "Administrative Systems, Inc.(ASI)" in Sacramento CA.
My email here is:
warren@asipay.comMy desk phone is: 916-563-1137
When attempting to migrate my application(created with Codegear Rad Studio 2009) to my new Windows 7 PC, I have recently encountered the following error:
"Data provider or other service returned an E_FAIL status."
Here is the snippet of Delphi code that triggered the error:
----
With ADODataSet_MISC do
begin
Close;
CommandText := 'select sum(billed) as totbilled from '
+ '"public"."PART_REC_E";';
Open;
billedDiff := FieldByName('totbilled').AsCurrency
- ADODataSet_part_Ltotal_billed_amount.AsFloat;
Close;
end;
----
This code snippet works fine on the old WinXP SP3 workstation.
All other 'select' statements in the program which do not utilize the SQL SUM() function work fine.
Thank You.