Options

ADO Recordsets and SQLServer Type 'Decimal'

jsnayberkjsnayberk Member Posts: 58
edited 2008-07-30 in SQL General
I have to access an external database (SQL-Server) from inside Navision (4.00). I use Microsoft ActiveX Data Objects 2.8 Library to do the job and everything works fine, exept one thing:
When I try to get a SQL-Decimal (9-bit float) into a Navision-Decimal (8-bit float) I run into an error telling me that these types are not compatible.
In a test database I changed the SQL data type to 'Money' and something like
EVALUATE(navDecimal,FORMAT(adoRS.Fields.Item('Amount').Value)); 
worked fine.
Unfortunately I cannot change the data type in the customers database. So I have to find a way to access this SQL-Decimal field.
Any ideas?
--
Josef Snayberk

Comments

  • Options
    SaalekSaalek Member Posts: 181
    Hi
    Try to use variant varialbes
    and then, use evaluate to convert variant variable to decimal
    navVariant:= adoRS.Fields.Item('Amount').Value; 
    evaluate(navDecimal,NavVariant);
    

    Bye
  • Options
    jsnayberkjsnayberk Member Posts: 58
    Sorry, wan´t work.
    At
    evaluate(navDecimal,NavVariant); 
    
    following error message appears:
    'You cannot enter '☺' in Decimal. The cursor is in front of the invalid character.'

    But finally I found a (may be crippled) solution:
    I use two recordsets. The first one with sql:

    select DocNo, cast(Amount as Money) as Amount from MyTable

    to assign the amount field to Navision Decimal variable;
    and the second recordset with sql:

    select * from MyTable where DocNo = 999

    to update a certain record.
    For the update of the amount field I can use a Navision Decimal variable without problems because no information will be lost in this direction.
    --
    Josef Snayberk
  • Options
    krikikriki Member, Moderator Posts: 9,090
    [Topic moved from Navision forum to SQL General forum]
    Regards,Alain Krikilion
    No PM,please use the forum. || May the <SOLVED>-attribute be in your title!


Sign In or Register to comment.